首先,我想说的是,当谈到这些事情时,我完全迷失了,所以我很可能不得不被掏空。
无论如何,我现在正在使用PP IPN,所以我即将推出的项目中的人可以将自己升级为“Premium”,这将为他们提供一些额外的功能等。但是,该脚本以某种方式工作,但它不会更新我的数据库信息。
在我的数据库中,我有一个名为“vip”的字段,在注册时设置为“0”。如果您购买溢价,它应该更改为“1”。我的问题是,即使付款完成,它也不会更新信息。
我也在网络服务器上。 我已经按照PHPAcademy为此做了一个教程,所以再一次,我很无能为力。而他们的论坛似乎已经死了。
ipn.php
<?php
include 'core/init.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.1\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'];
$user_id = $_POST['custom']; // Our user's ID
if (!$fp) {
// HTTP ERROR
} else {
fputs ($fp, $header . $req);
while(!feof($fp)) {
$res = fgets ($fps, 1024);
if (strcmp ($res, "VERIFIED") == 0) {
if ($payment_status == 'Completed') {
$txn_id_check = mysql_query("SELECT `txn_id` FROM `log` WHERE `txn_id` = '".$txn_id."'");
if (mysql_num_rows($txn_id_check) !=1) {
if ($receiver_email == 'h1f5gaming@gmail.com') {
if ($payment_amount == '0.01' && $payment_currency == 'EUR') {
// add txn_id to database
$log_query = mysql_query("INSERT INTO `log` VALUES ('','".$txn_id."','".$payer_email."') ") or die(mysql_error());
// update premium to 1
$update_vip = mysql_query("UPDATE `users` SET vip='1' WHERE `user_id` = '".$user_id."'") or die(mysql_error());
}
}
}
}
} else if(strcmp ($res, "INVALID") == 0) {
// Log for manual investigation
}
}
fclose ($fp);
}
?>
正如您所看到的,我在查询的两行中也有“或死(mysql_error())”,但我想说它仅用于测试目的。它根本不会给我任何错误。
这是我的表格:
<form action="https://www.paypal.com/cgi-bin/webscr" method="POST">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="h1f5gaming@gmail.com">
<input type="hidden" name="item_name" value="Premium Membership">
<input type="hidden" name="amount" value="0.01">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="EUR">
<input type="hidden" name="lc" value="EU">
<input type="hidden" name="bn" value="PP-BuyNowBF">
<input type="hidden" name="return" value="http://www.h1f5.eu/thanks.php">
<input type="hidden" name="cancel_return" value="http://www.h1f5.eu/">
<input type="hidden" name="rm" value="2">
<input type="hidden" name="notify_url" value="http://www.h1f5.eu/ipn.php" />
<input type="hidden" name="custom" value="<?php echo $_SESSION['user_id']; ?>">
<input type="submit" value="Upgrade to Premium" />
</form>
提前谢谢。