gpt4 book ai didi

Paypal IPN 无效响应状态 : 302

转载 作者:太空宇宙 更新时间:2023-11-03 16:33:26 26 4
gpt4 key购买 nike

这是我的 ipn.php

在我的日志错误文件中,我收到了这条消息:无效的响应状态:302

我正在从“异常”代码中接收邮件,有人知道为什么吗?我不知道为什么会失败...拜托,我需要帮助!!

非常感谢

<?php
ini_set('log_errors', true);
ini_set('error_log', dirname(__FILE__).'/ipn_errors.log');

include '../../modelo.php';
include('ipnlistener.php');
$listener = new IpnListener;
$listener->use_sandbox = true;
$listener->use_ssl = false;
$verified = $listener->processIpn($my_post_data);
try {
// $listener->requirePostMethod();
$verified = $listener->processIpn();
mail('mymail@gmail.com', 'TRY ok', 'ok');

} catch (Exception $e) {
error_log($e->getMessage());
mail('mymail@gmail.com', 'Exception', 'nok');
exit(0);
}
mail('mymail@gmail.com', 'final del script', 'include');
?>

这是我的 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="myemailpaypal@yopmail.com">
<input type="hidden" name="currency_code" value="EUR">
<input type="hidden" name="item_name" value="<?php echo $product;?>">
<input type="hidden" name="amount" value="<?php echo $amount;?>">
<input type="hidden" name="return" value="http://www.myweb.com/thankspage.php">
<input type="hidden" name="custom" value="<?php echo $bookcode; ?>">
<input type="hidden" name="notify_url" value="http://www.myweb.com/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>

最佳答案

$listener->use_ssl = true;

沙盒需要 ssl

关于 Paypal IPN 无效响应状态 : 302,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19080809/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com