payment-gateway

PayPal Sandbox Error: Cookies are blocked

人走茶凉 提交于 2019-12-01 20:55:40
问题 I was working with paypal sandbox account. It was working fine. But, now it shows the following error. The cookies are enabled. I tried using different browser and a different computer. Still I'm getting the same error. I tried clearing the cookies and cache. But it didn't work. Any solution? 回答1: Please turn on cookies to check out This is a Paypal's issue which affects Express Checkout on the PayPal Sandbox. Paypal announced that there is no alternative workaround at the moment. Reference:

Paypal API - Can we transfer money to multiple accounts in a transaction?

↘锁芯ラ 提交于 2019-12-01 20:41:45
A proposed scenario is, assume the shopping cart site, where buyer has to pay for a product. The sold product costs will be transferred to the respective merchant. Here, the website owner has to be paid(commission) for the purchased product. Is it possible in Paypal? Right now, I am using Paypal checkout. Your ideas/suggestions would be helpful. Please do it. There are a number of ways you could set this up. You could use the Adaptive Payments platform , specifically the Pay API , to create parallel or chained payments so that multiple receivers can receive money within the same transaction.

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

“The request was aborted: Could not create SSL/TLS secure channel” error in Braintree

别说谁变了你拦得住时间么 提交于 2019-12-01 18:07:08
问题 In my local PC Braintree showing error "The request was aborted: Could not create SSL/TLS secure channel" when executing : var clientToken = gateway.ClientToken.generate(); I am using "Braintree-2.33.0.dll" and my target .net version is 4.5.1. I have enabled TLS 1.2. It was working nicely three days ago. But suddenly started showing error. Many people faced same error and most of then have changed the SecurityProtocol . I dont find any way to change that from braintree. Is there any way to

“The request was aborted: Could not create SSL/TLS secure channel” error in Braintree

∥☆過路亽.° 提交于 2019-12-01 18:02:16
In my local PC Braintree showing error "The request was aborted: Could not create SSL/TLS secure channel" when executing : var clientToken = gateway.ClientToken.generate(); I am using "Braintree-2.33.0.dll" and my target .net version is 4.5.1. I have enabled TLS 1.2. It was working nicely three days ago. But suddenly started showing error. Many people faced same error and most of then have changed the SecurityProtocol . I dont find any way to change that from braintree. Is there any way to change ServicePointManager.SecurityProtocol for braintree ? or anything else I am missing or need to do ?

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

Disable all payments gateway if there's specifics products in the Cart

微笑、不失礼 提交于 2019-12-01 13:02:41
I would like to disable all payments gateways under special situation: I've 2 special products that I don't want to be combined at checkout with any other product. Lets say that my "special" products IDs are 496 and 484 . All other are "normal" products. if one of these "special" products is in the cart, I want to disable "paypal" for example. if a customer has in his cart, at once, a "special" product and a "normal" product, I want to disable all the payments gateway , so he can't checkout. This is my code: //disable add to cart if add_filter( 'woocommerce_available_payment_gateways', 'filter

How to disable Cash on Delivery on some specific products in Woocommerce

巧了我就是萌 提交于 2019-12-01 02:00:48
I want to disable Cash on Delivery(COD) for some products on my online shopping site. Is it Possible? Compatible with woocommerce version 3+ Based on " Disable all payments gateway if there's specifics products in the Cart ". The code: add_filter( 'woocommerce_available_payment_gateways', 'conditionally_disable_cod_payment_method', 10, 1); function conditionally_disable_cod_payment_method( $gateways ){ // HERE define your Products IDs $products_ids = array(37,40,53); // Loop through cart items foreach ( WC()->cart->get_cart() as $cart_item ){ // Compatibility with WC 3+ $product_id = version

WORLDPAY Integration using php

不问归期 提交于 2019-12-01 00:37:24
Can any one please let me know is WORLDPAY payment gateway provides API for php stuffs? did any of you integrates this stuff? please advise me.... You can find complete documentation here: RBS WorldPay Technical Guides A simple payment submission would look like this: <form action="https://secure.wp3.rbsworldpay.com/wcc/purchase" method=POST> <input type=hidden name="instId" value="yourid"> <input type=hidden name="cartId" value="cartid"> <input type=hidden name="amount" value="9.99"> <input type=hidden name="currency" value="GBP"> <input type=submit value="Buy Now"> </form> The documentation

Braintree - Why braintree transactions created via API, or via sandbox, take so much time before settled?

混江龙づ霸主 提交于 2019-11-30 18:56:29
问题 Whenever, I create a transaction via Braintree API, or via their sandbox, it goes through many statuses like Authorized, Submitted for Settlement, Settled ... and all this takes 24 hours approximately. I want to ask is there a way by which I can create a transaction in sandbox/api and it is settled or disputed instantly. I don't know why it takes so much time ... e.g. in online shopping my credit card is charged immediately. How can same be achieved via braintree payments sandbox ? 回答1: I