PHP Paypal IPN 处理不起作用

标签 php paypal paypal-ipn

我是电子商务的新手,我使用 PHP 开发了一个基于 https://github.com/smhack/Ticket 的票务系统,一切正常,支付工作正常(PayPal 购物车)等...(我正在使用 PayPal 沙盒)

我已经在 IPN 模拟器上测试了我的 IPN 并且它可以工作,但是在我的项目中我无法理解为什么没有考虑 IPN 上的 PHP 代码(插入数据库,发送确认邮件)

HTML :

<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="m.bendriss-facilitator@gpayme.com">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="item_name" value="<?php echo $classTitle;?>">
    <input type="hidden" name="item_number" value="Class">
    <input type="hidden" name="custom" value="<?php echo $id;?>">
    <input type="hidden" name="amount" value="<?php echo $price;?>">
    <input type="hidden" name="return" value="http://www.croisentoi.com/ticket/">
    <input type="hidden" name="notify_url" value="http://www.croisentoi.com/ticket/ipn.php">
    <input type="image" src="http://www.paypalobjects.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>

ipn.php :

<?php

    include('ipnlistener.php');
    include("config.php"); 

    if($sqlTicketservertype = 'mysql'){
    $db = new PDO('mysql:host='.$sqlTicketserver.';dbname='.$sqlTicketdbname, $sqlTicketusername, $sqlTicketpassword);
    }
    // tell PHP to log errors to ipn_errors.log in this directory
    ini_set('log_errors', true);
    ini_set('error_log', dirname(__FILE__).'/ipn_errors.log');

    $listener = new IpnListener();
    $listener->use_sandbox = true;

    try {
        $verified = $listener->processIpn();
    } catch (Exception $e) {
        // fatal error trying to process IPN.
    error_log($e->getMessage());
        exit(0);
    }

    if ($verified) {
        // IPN response was "VERIFIED"
        $email = $_POST['payer_email'];
        $txn = $_POST['txn_id'];
        $firstName = $_POST['first_name']; 
        $lastName = $_POST['last_name'];
        $paymentDate = $_POST['payment_date'];

        $query = $db->PREPARE("INSERT INTO tickets ( email, txn, firstName, lastName, paymentDate  ) VALUES ( '$email', '$txn', '$firstName', '$lastName', '$paymentDate'  )");
        $query->execute();

        mail('bendrissmehdi@gmail.com', 'Valid IPN', $listener->getTextReport());
    } else {
        // IPN response was "INVALID"
        mail('bendrissmehdi@gmail.com', 'Invalid IPN', $listener->getTextReport());
    }

?>

我认为应该在支付成功时执行 IPN。那么为什么这个文件没有被读取呢?你有什么想法吗?

编辑:该项目托管于 http://croisentoi.com/ticket

谢谢

最佳答案

您还必须在 Paypal 沙盒站点中打开 IPN 通知,以便它在您的 PHP 脚本中运行。继续并使用 ipn url 将其打开(稍后您可以使用 php 脚本中的“return”属性覆盖此 url):

https://www.sandbox.paypal.com/cgi-bin/customerprofileweb?cmd=_profile-ipn-notify

关于PHP Paypal IPN 处理不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19548886/

相关文章:

paypal - 如何测试并行支付 IPN 监听器

php - Symfony 序列化程序返回字符串而不是 float

php - EXCEL:如何在excel中添加背景标题颜色;使用 PHP 导出?

ios - 新 PayPal iOS SDK 中的实时凭证

支付宝语言选择方法

magento - Google Analytics 电子商务仅跟踪 Paypal

php - 我可以在没有 paypal 重定向到成功页面的情况下更新数据库吗?

php - Paypal IPN 无法将货币类型从美元更改为英镑

php - 动态行垂直向下并在六行后创建列

PHP 音节检测