我正在努力获取PayPal IPN订阅ID。这是我的IPN页面。
<?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.paypal.com', 443, $errno, $errstr, 30);
if (!$fp) {
// HTTP ERROR
} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {
// check the payment_status is Completed
// check that txn_id has not been previously processed
// check that receiver_email is your Primary PayPal email
// check that payment_amount/payment_currency are correct
// process payment
if("susbcr_signup" == $_POST['txn_type']){
$_id = $_POST['subscr_id'];
$websites= "websites";
$database = "k29803_1";
mysql_connect("localhost", $username, $password) or die(mysql_error());
mysql_select_db($database);
$query = "SELECT * FROM users WHERE username= 'drahoslava' AND password = 'drah0slava'";
$results = mysql_query($query)or die(mysql_error());
if(mysql_num_rows($results)==1){
$add_credits = "UPDATE users SET hash = '$_id'
WHERE username= 'drahoslava' AND password = 'drah0slava'";
mysql_query($add_credits) or die(mysql_error());
echo 'done';
}
}
else if (strcmp ($res, "INVALID") == 0) {
// log for manual investigation
}
}
fclose ($fp);
}
}
?>
这是我的表格
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="6ZZUDQCUUXGMS">
<input type="hidden" name="item_name" value="Baseball Hat Monthly">
<input type="hidden" name="item_number" value="123">
<input type="hidden" name="notify_url" value="http://www.germcode.kodingen.com/ipn.php" />
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
Mysql表没有更新..可能是什么问题。 *我确实有自动返回
答案 0 :(得分:1)
对不起,这不是一个真正的答案,但我无法正确地将我的建议纳入评论
尝试设置一个额外的表用于测试目的,该表将接收每个事务的ipn信息的原始转储。然后,您可以查看收到的内容,以确定未将其插入表格的原因。
要存储您可以执行的所有原始数据:
$IpnSerialized = serialize($_POST);
$RawInsert = "INSERT INTO `IpnRaw` (`IpnDump`) VALUES ('{$IpnSerialized}')";
此外,请勿向IPN处理程序脚本添加任何回声或打印件。无论如何,没有人会看到它。
您可能希望在测试表中添加一些额外的字段,您可以在其中存储渐进标记,以查看在爆炸之前脚本获得的距离。
答案 1 :(得分:1)
尝试通过电子邮件发送您从paypal返回的ipn数据,看看您是否可以获取数据。如果您可以获取数据,则查询中存在问题。