Hello,
I'am trying implement IPN to my website.
At first i tried test it with sandbox and response was VERIFIED.
I used this url:
https://www.sandbox.paypal.com/cgi-bin/webscr
But when i tried hot run with url (https://www.paypal.com/cgi-bin/webscr)
something was wrong and response was INVALID.
Here is what the paypal sends me:
Quote:https://www.paypal.com/cgi-bin/webscrmc_gross=5.00&protection_eligibility=Ineligible&address_status=unconfirmed&payer_id=GMB2J689BCDDG&tax=0.00&address_street=Gorazdovo+11&payment_date=04%3A25%3A51+Dec+13%2C+2009+PST&payment_status=Completed&charset=windows-1252&address_zip=77200&first_name=Michal&mc_fee=5.00&address_country_code=CZ&address_name=Michal+Serbus¬ify_version=2.8&custom=0045206649-9-10&payer_status=verified&business=drobacek%40gmail.com&address_country=Czech+Republic&address_city=Olomouc&quantity=1&verify_sign=A0asK6oiIZmtBFrRCq-Iiqf8lrk.A0ljdlHF8MLM-ZhnR-70BHY5USKm&payer_email=esfoaukro%40seznam.cz&txn_id=5YK25015VL504770K&payment_type=instant&last_name=Serbus&address_state=&receiver_email=drobacek%40gmail.com&payment_fee=&receiver_id=HL29D2DYYLCXJ&txn_type=web_accept&item_name=test&mc_currency=CZK&item_number=90010&residence_country=CZ&handling_amount=0.00&transaction_subject=0045206649-9-10&payment_gross=&shipping=0.00&cmd=_notify-validate
I send this parameters:
$paypal->field('cmd', '_xclick');
$paypal->field('business', 'drobacek@gmail.com');
$paypal->field('return', $SITE_URL . "/buybidsuccess.php");
$paypal->field('cancel_return', $SITE_URL . "/buybidsunsuccess.php");
$paypal->field('notify_url', "http://www.page.cz/paypal4/example.php");
$paypal->field('item_name', $bidpackname);
$paypal->field('item_number', $bid . "00" . $uid);
$paypal->field('amount', $amt);
$paypal->field('rm', 2);
$paypal->field('currency_code', 'CZK');
$paypal->field('custom', $myID);
Can you give me advice? I don't know how to continue...
And sorry for my english :)
Thanks a lot.
wise