New Payment integration

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Hace 13 años
Hi

We have implemented an integration to our paymentgateway "onlinepayment.dk" but at the moment the installment into a new shop is rather manual. Is there a way to deploy a paymentgateway implementation into a shop automaticly?

Best regards
Jan Agermose
Conviator ApS
http://www.conviator.com
Hace 13 años
There is no installation system for payment gateways.

You can do a number of things to make your payment gateway easy to deploy.

1. Create your admin configuration user control and customer payment template in your own ASP.NET web application project. This way the user does not need to recompile the main nopCommerceStore project to use your payment gateway.
2. Create an SQL script to add the payment gateway and any associated settings.

Then in your deployment package you have:

/bin/YourGateway.dll
/bin/YourGateway.UI.dll

these are just copied to bin directory of web site

/Admin/ConfigurePaymentMethod.ascx - just copy to /Administration/Payment/[PaymentGatewayName]
/Customer/PaymentModule.ascx - just copy to /Templates/Payment/[PaymentGatewayName]

/setup.sql - script to execute against database

So basically, 4 files to copy and 1 script to run.
Hace 13 años
ok, I think this is what is already done.

when we finish testing, how can we then get it published?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.