From what I understand about integration with paypal - we rely on the IPN to process our the db injection like creating the order, recording the transaction into our db, etc.

In order to receive the IPN data from paypal requires the buyers to click the return link after his/ her payment.

But what if the buyer didn't click the return link after payment? The buyer will still see their cart with the items in it if they come straight back to our shopping site without clicking the return link, but they have already paid on paypal.

I can't think of any idea to solve this possibility that might happen, do you have any solution?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

In order to receive the IPN data from paypal requires the buyers to click the return link after his/ her payment.

Your assumption is wrong, PayPal sends you the IPN as soon as the payment is made.

link|improve this answer
Hence why it's called "instant" payment notification. +1 – AlienWebguy Oct 8 '11 at 21:52
oh great to know that I am wrong! but can I ask - how the paypal sends the IPN to my site? is it via the hidden field in the form that is sent to paypal - <input type="hidden" name="notify_url" value="http://localhost/mycart/paypal.php">? – lauthiamkok Oct 8 '11 at 21:54
@lauthiamkok: Indeed, you specify the URL that will process (and [send] verify) with the notify_url field. – Alix Axel Oct 8 '11 at 22:00
thanks Alix. I have that hidden field of notify_url but paypal never the IPN to my localhost when I test it in my sandbox. Or do I need a live server? – lauthiamkok Oct 8 '11 at 22:03
2  
@lauthiamkok: Indeed you do, "localhost" as the name says is your local host, I have a localhost too. How would PayPal know which localhost you're referring to? You need to provide a host accessible from the outside, maybe configure your router and give PayPal your IP or use something like DynDNS (dyn.com/dns/dyndns-free), that way you (and PayPal) will be able to access your localhost with a URL that looks like "lauthiamkok.DynDNS.org". – Alix Axel Oct 8 '11 at 22:16
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.