Web.config - PayPal IPN侦听器 - HTTP错误代码500:内部服务器错误

时间:2012-04-24 09:44:10

标签: web-services web-config paypal-ipn

我正在尝试让我的PayPal IPN侦听器在我的Live环境中工作,它可以完美地进行分段,并且该问题与web.config文件有关:

(http://pastebin.com/B8YhJEZK)

我正在使用“https://developer.paypal.com/us/cgi-bin/devscr”和即时付款通知(IPN)模拟器来测试网络服务,但我得到以下内容:

“IPN传递失败.HTTP错误代码500:内部服务器错误”

1 个答案:

答案 0 :(得分:0)

您可能希望从PayPal中了解他们对其即时通知服务(ipn)所做的一些更改。

enter link description here

另外,请检查您的代码,看看您是否有类似的内容:

$fp = fsockopen($host,"80",$err_num,$err_str,30); 

并尝试将其更改为:

$fp = fsockopen('ssl://'.$host,"443",$err_num,$err_str,30);