payment-gateway

PayPal Express returns 4011 error message in Sandbox mode

ぐ巨炮叔叔 提交于 2019-12-06 07:15:28
I am using PayPal express in Sandbox mode in my PHP script (curl + SOAP). I have a simple purchase form with 1 "buy" button. When it's clicked I send initial SetExpressCheckout request and get successfull response from paypal with Acc=success and a fresh token <Ack xmlns="urn:ebay:apis:eBLBaseComponents">Success</Ack> <Token xsi:type="ebl:ExpressCheckoutTokenType">EC-4GV76670YM092205U</Token></SetExpressCheckoutResponse> Next I am trying to redirect script to PayPal with this new token: header("Location: https://www.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=".$result[Token]."

cc avenue php integration not working

穿精又带淫゛_ 提交于 2019-12-06 06:50:02
问题 i m using ccavenue php integration demo file.when i fill out the merchant id and 32 bit working key and submi the data no response return. Only blank page comes with below url http://www.ccavenue.com/shopzone/cc_details.jsp i m unable to understand that whats going wrong with integration. Here is the code for the form which i m filling: <form method="post" action="checkout.php"> <table> <tr> <td>Merchant Id : </td><td><input type="text" name="Merchant_Id" value=""></td> </tr> <tr> <td>Amount

Payment info using paypal

北战南征 提交于 2019-12-06 04:12:23
I have Integrated Paypal using php. I know there is return url ,that means when payment is received it will return to the url for our website. My Question is if payment is received and due to internet problem it does not return to our web page, how do I know that payment is received from a particular user? If there is a network issue and PayPal cannot issue the IPN message, then according to their documentation, they will retry 15 times up to 4 days. The IPN message service does not assume that your listener will receive all IPN messages. Because the Internet is not 100% reliable, IPNs can get

What is causing my PayPal IPN script to fail?

亡梦爱人 提交于 2019-12-06 04:11:59
问题 I am receiving the following from a PayPal IPN script. Is it evident from the following what is causing the IPN transaction to fail? If not, how can I investigate the problem further? [01/25/2010 7:49 PM] - FAIL: IPN Validation Failed. IPN $_POST variables from PayPal: mc_gross=25.00 protection_eligibility=Ineligible address_status=unconfirmed payer_id=AEVB83JZKDRCL tax=0.00 address_street=1 Main Terrace payment_date=10:49:52 Jan 25, 2010 PST payment_status=Pending charset=windows-1252

Micropayment processing using Paypal or other payment processing service?

核能气质少年 提交于 2019-12-06 01:32:33
问题 Currently, I use PayPal for payment processing. Almost 90% of the items are sold for $.99 and would like to use Paypals's Micropayment account, but PayPal states "support for Micropayments to merchants for US to US, GB to GB, AU to AU, and EU to EU transactions". My company is located in the US but the customers are very global. Does this mean using Micropayment option, I can't take payment from someone who lives in Europe or outside the US? Currently I am using the regular account and I am

Recurring payments with arbitrary amounts and at arbitrary times?

随声附和 提交于 2019-12-05 19:24:04
We'd like to find a payment provider that lets us do something similar to Hailo, ie: Users sign up and give us their credit card details/authorise us to charge their account. They only need to do this once . In Hailo's case, users might take a cab journey at any time and be billed any amount (within reason). In our case, users might need a job done at any time, again with an invoice for an arbitrary amount. So ideally we'd be able to charge users accounts at any time, for any amount, without further authorisation. This is possible because Hailo (and I believe Uber) have it implemented. However

How to integrate a “donate” button into a website in India?

耗尽温柔 提交于 2019-12-05 14:38:13
问题 We are developing a website for a charity trust in India. For this we need to add a "donate" button to the website for anyone who wants to donate to the charity through a payment gateway. However, both Paypal and Google Wallet / Google Checkout restrict the use of the "donate" button in India (Google, rather than a donate button, provide a "support" button). Are either of these payment gateways possible to integrate into a website in India? Or are there any other alternatives? 回答1: Indian

How to verify successful payment of paypal

孤者浪人 提交于 2019-12-05 08:01:12
I am trying to get the transaction info of paypal transaction that is passed to our website when customer is redirected to our website. I turned auto-return and pdt in my sandbox paypal account setting. I posted a sample transaction to paypal and it replied to my return url with tx appended. As found in some docs I did a curl req to https://www.paypal.com/cgi-bin/webscr and tried to get information by passing the req values as follows: a.) tx = same one received from paypal b.) at = pdt code given by paypal while turning pdt on c.) cmd= "_notify-synch" but in result i get String(0) "". What I

Setting up Payum Bundle with Symfony2 giving error

[亡魂溺海] 提交于 2019-12-05 06:53:46
问题 I am working with Symfony 2.6 and trying to setup PayumBundle (paypal express checkout) and I am getting an error InvalidConfigurationException in BaseNode.php line 313: Invalid configuration for path "payum.security.token_storage": The storage entry must be a valid model class. It is set Acme\featuresBundle\Entity\PaymentToken I am following the steps mentioned in there documetation This is how my config.yml looks like doctrine: orm: auto_generate_proxy_classes: "%kernel.debug%" entity

Setting PayPal return URL to localhost

左心房为你撑大大i 提交于 2019-12-05 03:22:38
I'm trying to integrate Paypal and I'm using sandbox in the process. I follow the step of the accepted answer in the below question. Setting PayPal return URL and making it auto return? But when I try to enter the URL, Paypal return the below error. We were unable to validate the URL you have entered. Please check your entry and try again. URL I'm trying to set is http://localhost:8888/paypal/success.php . Also I tried sending the return url with the form as below. <input type="hidden" name="return" value="http://localhost:8888/paypal/success.php"> Both methods does not work for me. Full Form