I need to integrate cc-avenue in Magento 1.9.2.4, but I'm not able to do that. Is there any free module available or any other way to integrate cc-avenue?
Upload the files provided by the vendors in the Magento directory, enable it from the backend, and add Merchant Id, Encryption Key, and Access Code details.
It should then work.
Related
I want to use Strapi.io to create a marketplace, a multivendor website.
Currently, i see how to manage for an ecommerce website.
But if we have several store, how we can manage each retailer to use their Strapi account ?
Thank you
I am trying to add the features of tracking the product that was bought from my site . I want to give the user detail about their product delivery and location of it like done by aftership. How can i implement it in my web site? How can i initiate it?
Please follow following step for aftership tracking integration.
Login to your AfterShip account.
Visit SETTINGS > API
Give your api-key a name and click Generate
integrate PHP sdk for aftership Aftership SDK
You can install SDK by composer require aftership/aftership-php-sdk command.
Please follow git document instruction.
I am developing a website in laravel I want to apply a e-wallet system on my website(Like Paytm).
This is first time I am doing this, I read on different places, saw methods using java and also read that I can sign-up for existing Wallets like PayTM, Payu Money, etc and integrate the same in the store.
But how to do it?
I used: https://github.com/tzsk/payu to add payu on my website.
Can you please tell me how can I make such a wallet? I have a wallet named table in databse when I added payu with one of the pages, I think it might bs used?
I made this wallet link, which will link user to different page where he can add money to his wallet as in here : https://paytm.com/paytmwallet
But, how can I add the payu feature of adding money to the wallet there?
You have to register as a merchant for a payment gateway on payemnt gatway providers like traknpay or payu and if your business is approved they will provide you with all details about integrating it in your website using there apis.
I would like to integrate Amazon login and pay with Magento. I have gone through the documentation provided by Amazon. Can you give me an idea how I can integrate with Magento.
I believe I need to creat a custom payment module, that I have done. Now main thing is to integrate amazon login and pay with custom module. Thanks in advance.
I would suggest starting here.
https://amzn.github.io/amazon-payments-magento-plugin/
Use the Pay with Amazon module available on Magento Connect here.
http://www.magentocommerce.com/magento-connect/pay-with-amazon-for-magento.html
You don't have to create anything custom. When you successfully install the plugin there will be a new Payment Method and it will also add a "Login with Amazon" in the "Customers" category.
I have a magento 1.7.2 running in multistore mode, how can I set a paypal IPN for each site? (The two sites use different paypal account.)
Looks like I can set the paypal IPN only on the default configuration.
Any tips?
thanks
Are you sure that you are talking about IPN, which means Instant Payent Notification? It is not necessary to configure anything about IPN in Magento.
When sending a transaction to PayPal Magento tells PayPal which URL to use for IPN. This URL is store specific and overwrites any settings done in your PayPal account. So what you have to do ist change PayPal API Crendentials for each store in Magento, which can be done by choosing the current config section.
Create another module with admin configuration of the other emails you want to support
and extend the model
Mage_Paypal_Model_Standard
and override the method
public function getConfig()
to set your logic for switching the config ( paypal email accounts )
Here the answer
http://www.magentocommerce.com/boards/viewthread/79479/
tested and running in my site
thanks