1

首先,我想说的是,当涉及到这些事情时,我完全迷失了方向,所以我很可能不得不被灌输。

无论如何,我现在正在使用 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);
}
?>

正如您所看到的,我在查询的两行中也有“or die(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>

先感谢您。

4

0 回答 0