I have a problem with Payal ipn notifications: There are 2 different forms, one is live and works for a long time, then the other one is only implemented.
This will work perfect in my sandbox, but when trying with live it with PayPal, it fails. No notification request is sent to my 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 - The safer, easier way to pay online!" style="width: 147px" />
- No firewall is installed
- The script url is correct and works from outside
- The script was developed on Zend Framework, so the URL is
[domain]/module/controller/action
I have also tried with regular[domain]/handler.php<br/>
- The IPN is On in the pp settings
- The currently working script is on
[domain]
, the new script is on[subdomain].[domain]