I am trying to integrate ICICI Payseal gateway with Magento. I have successfully tested the payment gateway with test file. But I am not getting the how to make it live as I am not able to see it on checkout page , also not in admin section. Can someone help me out.
A payment module will be displayed on checkout if it meets certain criterias:
1. It should be active.
2. It should be available for website or store where you are testing.
3. It should be available for zone the customer is from.
Plus there are few more criteria that will depend on what all configuration related controls exist.
You will have to develop a complete module with the provided files by ICICI bank, they provide a code in core php which will work perfectly fine.
Related
I planned to build a ECommerce website in Magento. In this, I need goldmoney payment method for checkout. I searched about goldmoney payment for Magento, but I didn't get any valuable result.
Please someone help me to get this done and suggest me other ways to get this done.
Also suggest me how can i create developer account for testing in goldmoney.
goldmoney pay button only available. But that will not suitable for Magento.
Note: I am not much knowledge about goldmoney payment method or gateway.
If the payment integration doesn't exist, you'll need to create one.
To integrate a new payment method in Magento 1 you'll need to:
know about the payment API and workflow
create a (payment) module for Magento
There are plenty of material about creating payment module for magento out there. Here are some of them:
Inchoo
Excellence Magento Blog
A quick wizard for creating payment module
I download the ccavenue payment gateway module its working fine on megento
back end but it's not show in front end.
I clear the cash and index refresh but it's not working.
Please help.
Make sure you have enabled CCAvenue as a payment gateway.
Check file permissions of template/layout files
CCAvenue mostly has encrypted module. You can contact them to get un-encrypted one. OR if you already have it, debug by doing echo-exit in model files for payment gateway.
Its difficult to analyze issue as there is no reference of what is the error you are getting but you can try above steps to check.
We already have Instagram Magento extensions, the extension fetches images from the account we configure in the backend and shows in frontend side of Magento wherever i want. It was working fine until Instagram declared new API permission review system. I tried submitting app 2-3 times now, everytime declined. Is there anybody can help to get my app approved.
If it won't work many extension vendors will have problem with it. Instgram guys shall help but even they are not replying.
You can use this extension
I am also using this extension it's working fine for me and it will definitely work for you also
https://www.magentocommerce.com/magento-connect/instagram-integration-widget-by-neklo.html
I'm using marketplace extension from magentoconnect in my store. This extension is really good and works exactly what i needed it to do but there is 1 particular requirement I need which it doesn't provide.
For vendors, I want payments of each product sale to go directly to vendor's account ( through their credit card etc which they need to add before their product becomes visible ) and commission amount ( some percentage which is set by marketplace through admin panel ) to go to site owner's account. I know there is paypal adaptive payment add-on available with this extension but I don't want to use paypal due to some reasons.
I have tried to create my own module which will gather vendor's payment method after their login and will verify it if their credentials are working or not. But i'm confused as to which approach should i use to get their order payment to go directly in vendor's account and commission in site owner's account right away.
Also, i want to use authorize.net to charge clients as stripe does not support a lot of countries.
Any help in right direction is very much appreciated. I need a solution as to how i can implement it. I can customize or create my own module if needed be for this particular case, but i need to know which is a better approach or what will be close to magento way of doing stuff.
Sorry for my bad english.
Thanks In Advance
Ab.M
Hi Regarding Paypal adaptive payment this thread will help https://www.paypal-community.com/t5/About-Payments/Adaptive-Payments-for-Magento-marketplace/td-p/968101
as authorize.net does not provide marketplace api like stripe or paypal provides so it wouldnt be possible in this way .
PS - we are not self promoting our plugin or product , as user asked the questions specifically about our product that why i have added extension link with images and screenshot
I am trying to implement Google Checkout in my website.
I have the PHP code sample named "checkout-php-1.3.2" from http://code.google.com/p/google-checkout-php-sample-code/.
I have followed the instructions and am able to send contents to Google Cart successfully.
The problem is i do not know how to update my website's database after the payment has been made.
I looked a little in the demo code and there is a page responsehandlerdemo.php and there i can see a lot of notification cases namely
merchant-calculation-callback
new-order-notification
order-state-change-notification
charge-amount-notification
If anybody can provide any help regarding which callback to use and how to parse the xml.
It will be very helpful.
Regards,
Sourav Mukherjee
With the exception of merchant-calculation-callback (ref), all the other notifications mean something to your order processing (everything that has to do after successful checkout).
E.g.
new-order-notification - is what it says it is, data representing a new order
order-state-change - orders move into different states (status), so this notification notifies you of them
You should go over the Developer docs particularly the Notification API for details.
I'm not a PHP developer (.Net) but I've seen the sample code and it already includes XML parsing for the notifications you receive. Once you get to know the API, you'll know when/where in the flow you need to add your business code (i.e. database storage, etc.).