ccavenue plugin for nocommerce 2.40

Posted: one year ago Quote
Hi,
Does anyone know when the plugin for CCAvenue for version 2.40.
CCAvenue is one of the big payment gateways in India.
It would be helpful if someone can give an update.
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: one year ago Quote
Hi Prakash,

I have got this problem solved in my app.
Follow the below steps for CCAvenue.

1. Download plug in from below url
http://www.nopcommerce.com/p/264/ccavenue-payment-module.aspx

2. In the downloaded folder copy "Nop.Plugin.Payments.CCAvenue" folder to "Plugins" folder of your application

3. Open Description.txt file under the same folder and change supported version from 2.20 to 2.40

4. Now build your app and run

5. Login with admin creds and go to "Configuration > Plugins", here your will find "CCAvenue" under PaymentMethods group, click on install

6. After plugin installed click on configure and give ur merchant id there.

So CCAvenue plugin installed in your app and ready to use.
The final step is to make CCAvenue active under payment methods

7. Select "Configuration > Payment Methods" option from main menu and make the CCAvenue active by clicking on Edit.

I hope it helps for you.

Regards
Harinadh Ch
http://harynadh.blogspot.com
This post/answer is useful
1
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: one year ago Quote
Thanks Harynadh. I will try this and let you know.. Thanks again.
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: one year ago Quote
hi,
i fallowed the steps what specified.
but ccavenue plugin not showing in admin side.
can u tell me what is the problem
after copy nop.plugins.payment.ccavenue to plugins it is not showing in solutions explorer in visual studio.
nop.plugins.payments.ccavenue not loading in admin side

Thanks & Regards
Kumar
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: one year ago Quote
Hi all,
we managed to integrate ccavenue with nopcommerce but the problem is we dont get real time status from ccavenue back and the orders are still in pending status.

What is the redirect URL we should give in ccavenue so that the payment status is updated in nopcommerce.

------------------------------------------------------------------------------------------
Resolved - We spoke to ccavenue and they activated the real time feature and its resolved. Thanks to all..
This post/answer is useful
1
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: one year ago Quote
hi
any one help me
after i plugin ccavenue
i am getting the fallowing error
what is the problem can any one give me solution for this


  Error Code: 90
Error Description: Required+parameter+is+missing+or+Invalid+session.%3CB+style%3D%22color%3Ared%22%3EKindly+clear+cache+of+browser+and+re-initiate+your+transaction%3C%2FB%3E


Thanks & Regards
Kumar
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 11 months ago Quote
1. Download plug in from below url
http://www.nopcommerce.com/p/264/ccavenue-payment-module.aspx

2. In the downloaded folder copy "Nop.Plugin.Payments.CCAvenue" folder to "Plugins" folder of your application

3. Open Description.txt file under the same folder and change supported version from 2.20 to 2.40

4. Open InstalledPlugins.txt file under "Nop Commerce\Presentation\Nop.Web\App_Data" and add Payments.CCAvenue.

5. Now build your app and run

6. Login with admin creds and go to "Configuration > Plugins", here your will find "CCAvenue" under PaymentMethods group, click on install

6. After plugin installed click on configure and give ur merchant id there.

So CCAvenue plugin installed in your app and ready to use.
The final step is to make CCAvenue active under payment methods

7. Select "Configuration > Payment Methods" option from main menu and make the CCAvenue active by clicking on Edit.
This post/answer is useful
1
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)
Posted: 11 months ago Quote
Hi
u can add fallowing code
File locaiton is plugins\Nop.Plugin.payments.CCAvenue\CCAvenuepaymentprocess.cs

find fallowing method:

public CCAvenuePaymentProcessor(CCAvenuePaymentSettings ccAvenuePaymentSettings,
            ISettingService settingService, ICurrencyService currencyService,
            CurrencySettings currencySettings, IWebHelper webHelper)
        {
          
          
        }

place fallowing code:

public CCAvenuePaymentProcessor(CCAvenuePaymentSettings ccAvenuePaymentSettings,
            ISettingService settingService, ICurrencyService currencyService,
            CurrencySettings currencySettings, IWebHelper webHelper)
        {
            if (ccAvenuePaymentSettings.Key == null)
                ccAvenuePaymentSettings.Key = "type 16 digit key of account";
            if (ccAvenuePaymentSettings.MerchantId == null)
                ccAvenuePaymentSettings.MerchantId = "Merchant Id";
            if (ccAvenuePaymentSettings.PayUri == null)
                ccAvenuePaymentSettings.PayUri = "https://www.ccavenue.com/shopzone/cc_details.jsp";
            if (ccAvenuePaymentSettings.MerchantParam == null)
                ccAvenuePaymentSettings.MerchantParam = "";
            this._ccAvenuePaymentSettings = ccAvenuePaymentSettings;
            this._settingService = settingService;
            this._currencyService = currencyService;
            this._currencySettings = currencySettings;
            this._webHelper = webHelper;
        }

Thanks & Regards
Kumar
This post/answer is useful
0
This post/answer is not useful

Please login or register
to vote for this post.

(click on this box to dismiss)