Tagged Questions
0
votes
1answer
245 views
How to test IPN from website with the new Paypal Sandbox?
I used to use the old PayPal sandbox to simulate a payment using IPN (posting a payment, and then confirming the IPN). This used to work fine with the classic sandbox.
With the introduction of the ...
0
votes
1answer
239 views
notify_url never call when buyer paid for subscription
Now i am trying to make subscription plan from my website with paypal sandbox. I was already setup notify_url in business account and turn on this feature. return and cancel return is correctly work. ...
0
votes
1answer
264 views
Simulating failed IPN transactions in Paypal Sandbox
I've got an application using Paypal's IPN interface, pointing at the sandbox site while it's in development.
I've got it handling the success cases correctly, along with the failure cases I ...
0
votes
0answers
157 views
PayPal IPN Sandbox dose not act
Let me be quick, im running in Sandbox mode and i have portforward my router to port 80 and im running XAMPP
Here is my first code ipnlistener.php
<?php
class IpnListener {
/**
* If true, the ...
0
votes
0answers
170 views
Paypal's IPN works using testing tools, but returns invalid from my form
I'm working with Paypal Sandbox, but I can't make it work in my application. I have written a script that processes the IPN and creates invoices, send emails to customer and myself, etc. The payment ...
-1
votes
2answers
77 views
PHP paypal sandbox
I am using paypal sandbox for my transactions but ipn is not working. When i check ipn history in my sandbox account it often shows the status as "Retrying". Sometimes it show the status as "Failed".
...
0
votes
2answers
571 views
paypal ipn and mysql
I'm struggling with this problem for some days now but with no success, I'm relatively
new to paypal ipn but have used it succesfully in the past few monhts, now maybe I'm
doing some silly mistake or ...
0
votes
3answers
828 views
Paypal IPN Help… Getting Invalid response from Sandbox
Can anybody help me in solving this error. I am getting Invalid response from paypal sandbox.
My sandbox account is verified, IPN is on at my account, I have also set notify url in my sandbox ...
0
votes
2answers
955 views
php - PayPal IPN Not Working (on Sandbox)
UPDATE: I've even tried having the whole PHP script just be a single line that emails me when the script is viewed, and it still doesn't email me.
I've tried everything, or so I feel like. I have the ...
0
votes
0answers
344 views
txn_id not received from Paypal
I'm trying to receive POST infos from paypal to my website, the landing page after payment. Unfortunately, I don't understand why the txn_id is not received from my website. On my script I've:
if( ...
0
votes
1answer
372 views
After a successful transaction in Paypal Sandbox, how can i update my site with values?
can i ask if what code should i put in my .php in order for my site to update values after a successful purchase using paypal sandbox? i'm already done with making transactions in paypal sandbox.. the ...
4
votes
2answers
1k views
PayPal IPN $_POST['txn_id'] not set
I'm using the PayPal sandbox to do a subscribe button and then when I get the IPN response for a subscription or a subscription cancelation $_POST['txn_id'] is never set.
So I don't know how to ...
0
votes
1answer
1k views
Paypal IPN Validation - Doesn't work despite success page being reached
I've been bashing my head against a brick wall the last few days on minor problems. This time I am on the final piece to the puzzle. In my php function of a wordpress cart plugin I have the ...
4
votes
2answers
3k views
PayPal IPN _notify-validate throws Error 302 in Sandbox
The second IPN response after sending cmd=_notify-validate to www.sandbox.paypal.com returns HTTP Error 302.
If I change the URL to www.paypal.com, it returns INVALID response. I am not sure where I ...
0
votes
2answers
1k views
paypal ipn problem, url malformed (sandbox works, paypal doesn't)
I have an IPN file that works perfectly in sandbox. It returns valid or not and executes the code correctly. However if I try real live payments it tells me the url is malformed
This is the error ...
0
votes
1answer
2k views
Paypal Sandbox payment problem
I have the following post button that i use for paypal transactions:
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" ...
1
vote
0answers
745 views
Paypal IPN returns verified on sandbox, but invalid on live
So I have been using paypal, and sandbox mode everything works fine. Yet when I move over to live paypal with real money, IPN returns INVALID.
I am using a version of the script here ( ...
1
vote
1answer
1k views
How to move from PayPal sandbox to the real paypal payment?
I own a website selling greeting cards. I had programmers help me build the site, but upon testing, I realised that the PayPal checkout link still points to PayPal sandbox instead of the real PayPal.
...