0

我在这个问题上苦苦挣扎了几天,但没有成功,我对 paypal ipn 比较陌生,但在过去几个月里成功使用了它,现在也许我犯了一些愚蠢的错误,或者 paypal 沙盒 ipn 服务器是不负责任。

付款已正确处理,钱从买方账户转到卖方,但仍没有在数据库中输入任何详细信息。

所以这是html表单代码:

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="POST">
  <input type="hidden" name="cmd" value="_xclick">
  <input type="hidden" name="business" value="sanboxselleremail">
  <input type="hidden" name="item_name" value="Product">
  <input type="hidden" name="item_number" value="1">
  <input type="hidden" name="amount" value="15">
  <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="lc" value="EN">
  <input type="hidden" name="bn" value="PP-BuyNowBF">
  <input type="hidden" name="return" value="http://mysite.com/testipn/">
  <input type="hidden" name="cancel_return" value="http://mysite.com/testipn/">
  <input type="hidden" name="rm" value="2">
  <input type="hidden" name="notify_url" value="http://mysite.com/testipn/ipn.php" />
  <input type="submit" value="submit" />
</form>

这是我在paypal找到的ipn代码:

include('db.php');

// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';

foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}

// post back to PayPal system to validate
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30);

// assign posted variables to local variables
$item_name = $_POST['item_name'];
$item_number = $_POST['item_number'];
$payment_status = $_POST['payment_status'];
$payment_amount = $_POST['mc_gross'];
$payment_currency = $_POST['mc_currency'];
$txn_id = $_POST['txn_id'];
$receiver_email = $_POST['receiver_email'];
$payer_email = $_POST['payer_email'];


if (!$fp) {
// HTTP ERROR
} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {

if($payment_status=='Completed'){

 $paylog = $db->query("INSERT INTO....);

}
else if (strcmp ($res, "INVALID") == 0) {
// log for manual investigation
}
}
fclose ($fp);
}

我已经仔细检查了所有内容,我知道您必须发回所有变量,所以我也检查了它们。sql 语法没有问题,因为我已经对其进行了测试,它会将值输入到我想要的数据库表中。

您能快速浏览一下并指出您可能发现的任何错误吗?

谢谢你。这个问题花费了我很多时间和压力...... :(

4

2 回答 2

0

嗨,在我看来,它被阻止了,因为当它试图完成该过程时没有重新识别你,我读过很多人都遇到了沙箱问题,paypal 上有一个东西告诉你,brb 发现很容易解决,你需要一个买家沙箱帐户和卖家你都对我的拼写感到抱歉希望这有助于使用它来测试它 https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_testing_SBAccessing

于 2012-08-23T21:16:46.937 回答
0

您的代码已过时,并且不包含(现在)需要的 HTTP 'Host' 标头。
因此,使用此代码,它永远不会返回“已验证”,而是从 PayPal 返回 HTTP/1.1 400“错误请求”。

要解决此问题,只需更改:
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";

到:
$header .= "POST /cgi-bin/webscr HTTP/1.1\r\n";

并添加:
$header .= "Host: www.sandbox.paypal.com\r\n";

Should you just wish to use updated sample code, you can find this at https://www.paypal.com/ipn/

于 2012-08-23T23:09:26.690 回答