我们一直致力于使用PAYPAL IPN的网站功能几天。当我们在developer.paypal IPN模拟器中测试我们的IPN监听器时,我们收到错误消息“IPN Delivery Failed:500 Internal Server Error”。同样在sandbox.paypal帐户的IPN历史记录中,我们得到500的HTTP响应代码。但是,如果我们将这些代码行从沙箱更改为paypal,我们会得到200(已发送)的HTTP响应代码。
$header = "POST /cgi-bin/webscr HTTP/1.1\r\n";
//use www.paypal for a live site
//$header .= "Host: www.paypal.com\r\n";
$header .= "Host: www.sandbox.paypal.com\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n";
$header .= "Connection: close\r\n\r\n";
$errstr=$errno='';
$paypalurl='ssl://www.sandbox.paypal.com';
//$paypalurl='ssl://www.paypal.com';
$fp = fsockopen ($paypalurl, 443, $errno, $errstr, 30);
两个月前,我在一个类似的IPN监听器上工作,当我在沙盒中测试时,它运行良好。我试图昨天测试那个IPN监听器,它也给了我500个HTTP响应代码。我试图在错误日志中查找错误,但没有列出有关最近的HTTP请求的错误。
答案 0 :(得分:1)