2

我有以下付款表格:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" id="online-store-paypal">
  <input type="hidden" name="cmd" value="_xclick">
  <input type="hidden" name="business" value="kae@kvsites.ie">
  <input type="hidden" name="item_name" value="Purchase made from www.kvsites.ie">
  <input type="hidden" name="item_number" value="6">
  <input type="hidden" name="amount" value="1.00">
  <input type="hidden" name="currency_code" value="EUR">
  <input type="hidden" name="no_shipping" value="1">
  <input type="hidden" name="no_note" value="1">
  <input type="hidden" value="http://www.kvsites.ie/contact-us/Login?onlinestore_iid=6" name="return">
  <input type="hidden" name="notify_url" value="http://www.kvsites.ie/ww.plugins/online-store/verify/paypal.php">
  <input type="hidden" name="bn" value="IC_Sample">
  <input type="image" style="width:68px;height:23px;" src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" name="submit" alt="Make payments with payPal - it's fast, free and secure!">
  <img width="1" height="1" alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif">
</form>

相关行是这样的:

<input type="hidden" name="notify_url" value="http://www.kvsites.ie/ww.plugins/online-store/verify/paypal.php">

当我直接访问它时,它(显然)已注册在我的 Web 服务器的访问日志中。

但是,当我实际/使用/表单时,付款成功完成,但 IPN 没有出现在 PayPal 的 IPN 历史页面中,也没有出现在 Apache 的日志中。

这是几个月来完美运行的东西,直到最近才完全停止工作。

4

1 回答 1

1

Paypal IPN 通知目前已关闭。参见推特

于 2013-01-28T19:20:19.363 回答