payment-processing

Split Paypal payment into two accounts

梦想与她 提交于 2019-12-04 03:19:57
问题 I'm currently creating a system that lets admins create events and allow individuals to register for those events. Each registration has a fee associated with it, which registrants pay using PayPal. When an event is created, the admin inputs the PayPal account for which the money will be deposited. I then charge a set price per registration as the fee for the service. Is there a way to automatically take my cut of the fee when the payment is submitted to Paypal? I've looked at the Mass Pay

How Do I Make a SagePay BuyNow Button?

雨燕双飞 提交于 2019-12-03 15:01:25
问题 With PayPal, I can create a BuyNow button pretty easily, containing my merchant info, price, tax, shipping, etc. Is this possible in SagePay? 回答1: The desired system is called SagePay Form as far as similarity to PayPal's BuyNow button + PDT process. First, you need to create a FORM like so: <form action="https://live.sagepay.com/gateway/service/vspform-register.vsp" method="POST" id="SagePayForm" name="SagePayForm"> <input type="hidden" name="VPSProtocol" value="2.23" /> <input type="hidden"

How Do I Make a SagePay BuyNow Button?

淺唱寂寞╮ 提交于 2019-12-03 03:50:39
With PayPal, I can create a BuyNow button pretty easily, containing my merchant info, price, tax, shipping, etc. Is this possible in SagePay? Volomike The desired system is called SagePay Form as far as similarity to PayPal's BuyNow button + PDT process. First, you need to create a FORM like so: <form action="https://live.sagepay.com/gateway/service/vspform-register.vsp" method="POST" id="SagePayForm" name="SagePayForm"> <input type="hidden" name="VPSProtocol" value="2.23" /> <input type="hidden" name="TxType" value="PAYMENT" /> <input type="hidden" name="Vendor" value="<?= $YOUR_VENDOR_LOGIN

2Checkout OmniPay - Authorization Failed

我与影子孤独终老i 提交于 2019-12-02 18:04:49
问题 I'm getting an Authorization Failed response from 2Checkout when using OmniPay API. I had successfully hooked up Stripe with OmniPay, so then I went about hooking up 2Checkout. When you go to do that, the initial package on Github warns you to get the newer version from a user collizo4sky. So, I did, and then got it to work slightly without fatal error. In my web form, I generate a token properly and the sandbox logs at 2Checkout confirm this. I then use this code in OmniPay to attempt to

2Checkout OmniPay - Authorization Failed

一笑奈何 提交于 2019-12-02 08:03:16
I'm getting an Authorization Failed response from 2Checkout when using OmniPay API . I had successfully hooked up Stripe with OmniPay, so then I went about hooking up 2Checkout. When you go to do that, the initial package on Github warns you to get the newer version from a user collizo4sky . So, I did, and then got it to work slightly without fatal error. In my web form, I generate a token properly and the sandbox logs at 2Checkout confirm this. I then use this code in OmniPay to attempt to charge the card: use Omnipay\Omnipay; $sMerchantTransID = rand(11111111,99999999); $oGateway = Omnipay:

Charging existing card and customer with security code on stripe

ぃ、小莉子 提交于 2019-12-02 03:54:54
问题 We are using Stripe to process payments on a website we are working on Whenever a customer signs up we create a customer on Stripe and save the customer_Id in the DB against against the customer. Also when a customer places an order on the website we give the option to save the card for future uses. So we save the card against the customer as a payment source on stripe. This is the code we use to create the payment source: public void CreatePaymentSource(int customerId, string paymentToken) {

Charging existing card and customer with security code on stripe

…衆ロ難τιáo~ 提交于 2019-12-02 00:50:59
We are using Stripe to process payments on a website we are working on Whenever a customer signs up we create a customer on Stripe and save the customer_Id in the DB against against the customer. Also when a customer places an order on the website we give the option to save the card for future uses. So we save the card against the customer as a payment source on stripe. This is the code we use to create the payment source: public void CreatePaymentSource(int customerId, string paymentToken) { var customer = _customerProvider.GetLoggedInCustomer(customerId); //returns the customer_id e.g. cux

Payment Gateway integration in Opencart

限于喜欢 提交于 2019-12-01 18:43:41
I want to integrate CitrusPay (An indian payment gateway) in my opencart application. I have received a PHP integration kit but don't know where to start in opencart. Please let me know how to add Citruspay as a payment method. Naveenbos You can edit and modify these files: /var/www/opencart/catalog/controller/payment /var/www/opencart/catalog/model/payment /var/www/opencart/catalog/view/theme/ You can see two folder default and other one you can place it in that other folder in that folder should have template/payments here you have put your .tpl file - PHP MVC. Then take your admin: /var/www

Payment Gateway integration in Opencart

微笑、不失礼 提交于 2019-12-01 17:12:42
问题 I want to integrate CitrusPay (An indian payment gateway) in my opencart application. I have received a PHP integration kit but don't know where to start in opencart. Please let me know how to add Citruspay as a payment method. 回答1: You can edit and modify these files: /var/www/opencart/catalog/controller/payment /var/www/opencart/catalog/model/payment /var/www/opencart/catalog/view/theme/ You can see two folder default and other one you can place it in that other folder in that folder should

Split Paypal payment into two accounts

让人想犯罪 __ 提交于 2019-12-01 16:39:14
I'm currently creating a system that lets admins create events and allow individuals to register for those events. Each registration has a fee associated with it, which registrants pay using PayPal. When an event is created, the admin inputs the PayPal account for which the money will be deposited. I then charge a set price per registration as the fee for the service. Is there a way to automatically take my cut of the fee when the payment is submitted to Paypal? I've looked at the Mass Pay option with PayPal, but that means all the money has to go into a central account and then get divided