PayPal IPN脚本无法正常工作

时间:2011-10-14 19:37:01

标签: php paypal paypal-ipn

所以我最近创建了PayPal IPN脚本,但是当我使用Sandbox(测试)帐户测试时,我看到了问题,一切都很好,除了它只是没有在数据库中插入任何数据,经过验证的部分只是没有'工作,neather做了INVALID部分,没有工作。 您可以在这里查看我的脚本 -

<?php
// PHP 4.1

// 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.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($receiver_email == 'test_1318600337_biz@gmail.com')
  {
      include('../database.php');
      $result = mysql_query("SELECT * FROM `smscodes` WHERE code = '$item_number';");
      $select_id = mysql_fetch_array($result);
      mysql_query('UPDATE `advertisements` SET status="accepted" WHERE id = "'.$select_id['adv-id'].'"');
      mysql_query("DELETE FROM `smscodes` WHERE `code` = '".$item_number."' LIMIT 1");
  }
}
else if (strcmp ($res, "INVALID") == 0) {
$to = 'myemailishere@myemailishere.com';
 mail($to, "Error, something is wrong with paypal script", "Error, something is wrong with paypal script");
}
}
fclose ($fp);
}
?>

我的按钮是 -

  <form name="_xclick" action="https://www.sandbox.paypal.com/cgi-bin/webscr" 
      method="post">
      <input type="hidden" name="cmd" value="_xclick">
      <input type="hidden" name="business" value="test_1318600337_biz@gmail.com">
      <input type="hidden" name="currency_code" value="EUR">
      <input type="hidden" name="item_name" value="Add Advertisement">
      <input type="hidden" name="amount" value="3.00">
      <input type="hidden" name="item_number" value="<?php echo $_SESSION['code']; ?>">
      <input type="hidden" name="return" value="http://site.com">
      <input type="hidden" name="notify_url" value="mysite.com/tsatstastast/ipn.php">
      <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" 
          border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
  </form>

在PayPal IPN历史记录中,它显示了HTTP 200的成功,但我没有任何线索,为什么它不在数据库中插入任何内容。 database.php文件没问题,里面有数据库的所有信息。希望你能帮我解决这个问题。 编辑:忘了提及,使用PayPal测试工具,您插入IPN脚本代码,它验证它是否正常工作,一切都很好。但是使用按钮和测试帐户却没有。哦和smscodes表,这是正确的,我使用相同的表支付贝宝和短信付款,所以不用担心它;)! 编辑:尝试更改为ssl://www.sandbox.paypal.com但没有机会,现在生病尝试调试它。 编辑3:所以我刚发现错误,这是在Paypal沙盒帐户设置,没有打开通知消息。现在我收到一条消息说邮件($ to,“Error,paypal脚本有问题”,“错误,paypal脚本有问题”); ,所以它失败了。该怎么做,任何帮助将不胜感激! 最好的祝福, Valters

2 个答案:

答案 0 :(得分:0)

尝试使用fsockopen()提供的值进行调试:

$fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);
if (!$fp)
{
    echo $errstr . ' (' . $errno . ')';
}

答案 1 :(得分:0)

可能是你在表单和监听器中使用沙盒网址使用官方的paypal网址...你必须使用相同的网址。

这里

  

$ fp = fsockopen('ssl://www.paypal.com',443,$ errno,$ errstr,30);

在这里

  

form name =“_ xclick”action =“https://www.sandbox.paypal.com/cgi-bin/webscr”         方法= “POST” &GT;