Reputation: 11
Hi I have a site in which paypal ipn is implemented with cart.. the Payment is working fine. But after payment iam updating my database with the return value which is getting from POST from paypal but now iam getting this POST array as null Any one have the idea? please help me
Thanks in advance
Upvotes: 1
Views: 233
Reputation: 6043
Paypal
now does not return parameters in the POST
, they send those parameters via IPNHanlder
.
IPNHandler is a background call which paypal makes to your site, and sends all the required POST
parameters through IPNHandler. I had the same issue few weeks ago, but then I changed my logic and started using paramters from IPNHandler.e
Upvotes: 1