Paypal IPN not responding at all

GeeS

New Member
Anybody having this problem? Suddenly paypal is not returning POST data to the notify_url. Array is completely empty and it happens when payment is made through new paypal checkout system.
rhxPr.png
Below is the final page after payment is made. When I click continue booking, it should have redirected to notify_url with POST data for validation and stuff but data is an empty array.
zc19i.png
My request code is listed below. Can anybody please take a look at it and tell me whether some variable is missing or i am doing something wrong?\[code\]<form method="post" name="paypal_form" action="http://www.sandbox.paypal.com/cgi-bin/webscr"> <input type="hidden" name="business" value="http://stackoverflow.com/questions/3931852/[email protected]" /> <input type="hidden" name="cmd" value="http://stackoverflow.com/questions/3931852/_xclick" /> <!-- the next three need to be created --> <input type="hidden" name="return" value="https://system1.smanager.net/SM/lib/booking_system/response.php" /> <input type="hidden" name="cancel_return" value="https://system1.smanager.net/SM/lib/booking_system/paypal_ipn.php?cancelled=true" /> <input type="hidden" name="notify_url" value="https://system1.smanager.net/SM/lib/booking_system/response.php" /> <input type="hidden" name="rm" value="http://stackoverflow.com/questions/3931852/2" /> <input type="hidden" name="currency_code" value="http://stackoverflow.com/questions/3931852/USD" /> <input type="hidden" name="lc" value="http://stackoverflow.com/questions/3931852/US" /> <input type="hidden" name="bn" value="http://stackoverflow.com/questions/3931852/toolkit-php" /> <input type="hidden" name="cbt" value="http://stackoverflow.com/questions/3931852/Continue Back to Booking System" /> <!-- Payment Page Information --> <input type="hidden" name="no_shipping" value="" /> <input type="hidden" name="no_note" value="http://stackoverflow.com/questions/3931852/1" /> <input type="hidden" name="cn" value="http://stackoverflow.com/questions/3931852/Comments" /> <input type="hidden" name="cs" value="" /> <!-- Product Information --> <input type="hidden" name="item_name" value="http://stackoverflow.com/questions/3931852/TestProduct" /> <input type="hidden" name="amount" value="http://stackoverflow.com/questions/3931852/10.23" /> <input type="hidden" name="quantity" value="http://stackoverflow.com/questions/3931852/1" /> <input type="hidden" name="item_number" value="http://stackoverflow.com/questions/3931852/1234" /> <input type="hidden" name="undefined_quantity" value="" /> <input type="hidden" name="on0" value="" /> <input type="hidden" name="os0" value="" /> <input type="hidden" name="on1" value="" /> <input type="hidden" name="os1" value="" /> <!-- Shipping and Misc Information --> <input type="hidden" name="shipping" value="http://stackoverflow.com/questions/3931852/0.0" /> <input type="hidden" name="shipping2" value="" /> <input type="hidden" name="handling" value="" /> <input type="hidden" name="tax" value="http://stackoverflow.com/questions/3931852/6" /> <input type="hidden" name="custom" value="http://stackoverflow.com/questions/3931852/somedata" /> <input type="hidden" name="invoice" value="" /> <!-- Customer Information --> <input type="hidden" name="first_name" value="http://stackoverflow.com/questions/3931852/ayaz" /> <input type="hidden" name="last_name" value="http://stackoverflow.com/questions/3931852/alavi" /> <input type="hidden" name="address1" value="http://stackoverflow.com/questions/3931852/Address" /> <input type="hidden" name="address2" value="" /> <input type="hidden" name="city" value="" /> <input type="hidden" name="state" value="http://stackoverflow.com/questions/3931852/abc" /> <input type="hidden" name="zip" value="" /> <input type="hidden" name="email" value="http://stackoverflow.com/questions/3931852/[email protected]" /> <input type="hidden" name="night_phone_a" value="" /> <input type="hidden" name="night_phone_b" value="" /> <input type="hidden" name="night_phone_c" value="" /></form></body>\[/code\]Thanks.
 
Back
Top