PayPal ipn notification request not sending -


i have problem payal ipn notifications: there 2 different forms, 1 live , works long time, other 1 implemented.

this work perfect in sandbox, when trying live paypal, fails. no notification request sent server. i've checked apache logs - nothing.

<input type="hidden" name="cmd" value="_xclick" /> <input type="hidden" name="business" value="business" /> <input type="hidden" name="item_name" value="name" /> <input type="hidden" name="item_number" value="1" /> <input type="hidden" name="quantity" value="1" /> <input type="hidden" name="amount" value="1" /> <input type="hidden" name="no_shipping" value="1" /> <input type="hidden" name="no_note" value="1" /> <input type="hidden" name="currency_code" value="usd" /> <input type="hidden" name="custom" value="ad::1" /> <input type="hidden" name="return" value="myurl" /> <input type="hidden" name="notify_url" value="notifyurl" /> <div style="text-align: center"> <input type="image" src="https://www.paypal.com/en_us/i/btn/btn_buynowcc_lg.gif" border="0" name="submit" alt="paypal - safer, easier way pay online!" style="width: 147px" /> 
  1. no firewall installed
  2. the script url correct , works outside
  3. the script developed on zend framework, url [domain]/module/controller/action have tried regular [domain]/handler.php<br/>
  4. the ipn on in pp settings
  5. the working script on [domain], new script on [subdomain].[domain]

have looked @ 'ipn history' within account?
hover on 'history' , click 'ipn history' (or profile > selling tools > instant payment notification > history).

this give status of each ipn message generated. these must marked 'sent' in order (paypal) mark them having been delivered.
if marked 'sent', means we've delivered them ipn handler (the url of available too) , have receive http 200 'ok' response ipn handler.

if not receive http 200 whichever reason (ssl handshake validation, network timeout, script error (500), server error (503), reattempt delivery of ipn message additional fifteen times.


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

javascript - addthis share facebook and google+ url -

ios - Show keyboard with UITextField in the input accessory view -