- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 paypal ipn 监听器 ipn.php,它链接到数据库并使用通知信息更新通知表,然后通过电子邮件将 key 发送到付款人电子邮件。
这是 ipn.php
<?php
include("class.phpmailer.php");
include("class.smtp.php");
include("config.php");
//Send an empty HTTP 200 OK response to acknowledge receipt of the notification
ini_set("log_errors", "On");
ini_set("error_log", "error.log");
$con = mysql_connect($dbhost,$dbuser,$dbpass);
if($con == false){ echo "Could not connect to mysql: " . mysql_error();}
else{echo "Connected to database successfully!";}
header('HTTP/1.0 200 OK');
header('Connection: close');
$item_name = $_POST['item_name'] != null ? $_POST['item_name'] : "none";
$item_number = $_POST['item_number'] != null ? $_POST['item_number'] : "none";
$payment_status = $_POST['payment_status'] != null ? $_POST['payment_status'] : "none";
$payment_amount = $_POST['mc_gross'] != null ? $_POST['mc_gross'] : "none";
$payment_currency = $_POST['mc_currency'] != null ? $_POST['mc_currency'] : "none";
$txn_id = $_POST['txn_id'] != null ? $_POST['txn_id'] : "none";
$receiver_email = $_POST['receiver_email'] != null ? $_POST['receiver_email'] : "none";
$payer_email = $_POST['payer_email'] != null ? $_POST['payer_email'] : "none";
// Build the required acknowledgement message out of the notification just received
$req = 'cmd=_notify-validate'; // Add 'cmd=_notify-validate' to beginning of the acknowledgement
foreach ($_POST as $key => $value) { // Loop through the notification NV pairs
$value = urlencode(stripslashes($value)); // Encode these values
$req .= "&$key=$value"; // Add the NV pairs to the acknowledgement
}
// Set up the acknowledgement request headers
$header = "POST /cgi-bin/webscr HTTP/1.0\r\n"; // HTTP POST request
$header .= "Host: www.paypal.com\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
// Open a socket for the acknowledgement request
$fp = fsockopen('ssl://www.paypal.com', 443, $errno, $errstr, 30);
// Send the HTTP POST request back to PayPal for validation
fputs($fp, $header . $req);
error_log("reached");
$res = stream_get_contents($fp,1024); // Get the acknowledgement response
while(!feof($fp)){
$res = trim(fgets($fp,1024));
if(empty($res)){
break;
}
}
$res = trim(fgets($fp,1024));
if (strcmp ($res, "VERIFIED") == 0) { // Response contains VERIFIED - process notification
$sql = "INSERT INTO notifications VALUES( DEFAULT, '$item_name','$item_number','$payment_status','$payment_amount','$payment_currency','$txn_id','$receiver_email','$payer_email')";
mysql_select_db($dbname,$con);
if(!mysql_query($sql)){
error_log(mysql_error());
}
if(strcmp($payment_status,"Completed") == 0){
mysql_select_db($dbname, $con);
$key = get_new_key();
$sql = "";
$sql = "INSERT INTO activationkeys VALUES(DEFAULT, '$key', '0', $item_number)";
if(!mysql_query($sql)){
error_log("Could not execute query: " . mysql_error());
}
$mail = new PHPMailer(true);
//Send mail using gmail
if($config_gmail){
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->SMTPSecure = "tls";
$mail->Host = "smtp.gmail.com";
$mail->Port = 587;
$mail->Username = $config_gmail_username;
$mail->Password = $config_gmail_password;
}
//Typical mail data
$mail->AddAddress($payer_email,"Donator");
$mail->SetFrom($config_merchant_domain,$config_merchant_name);
$mail->Subject = "You're Donation Key";
$mail->Body = "Hey, your payment was successful.\nHere's your key: " . $key;
if(!$mail->send()){
error_log("Message could not be sent: " . $mail->ErrorInfo );
}
}
mysql_close($con);
// Authentication protocol is complete - OK to process notification contents
// Possible processing steps for a payment include the following:
// Check that 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
}
else if (strcmp ($res, "INVALID") == 0) { //Response contains INVALID - reject notification
// Authentication protocol is complete - begin error handling
// Send an email announcing the IPN message is INVALID
$mail_From = "IPN@example.com";
$mail_To = "Your-eMail-Address";
$mail_Subject = "INVALID IPN";
$mail_Body = $req;
mail($mail_To, $mail_Subject, $mail_Body, $mail_From);
}
fclose($fp); // Close the file
function get_new_key(){
$keycharacters = "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ";
$key = "";
for($i = 0; $i < 10; $i++){
$key .= $keycharacters[rand(0,strlen($keycharacters)-1)];
}
return $key;
}
?>
问题是,当我通过沙箱发送时,它会很好地更新数据库并通过电子邮件发送 key ,但是当我尝试实时使用代码时,它什么也没做...
我不知道问题出在哪里。
最佳答案
有什么错误吗?检查 IPN 历史日志?如果进行 API 调用,请确保使用 LIVE Credentials,如果仍然有问题,请给我帐号或电子邮件地址,或向 paypal.com/mts 提交票证
关于php - PayPal IPN 监听器使用沙箱但不实时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20286327/
当单击复选框(或选择所有复选框)时,我想向 CheckboxSelectionModel 添加一个监听器。 var smSensors = new xg.CheckboxSelectionModel(
我有一个简单的程序,允许 2 个客户端连接到服务器。 连接后,他们可以轮流点击空白卡片图像。 一旦 2 个客户中的任何一个点击空白卡片图片,卡片图片将变为 Ace 俱乐部图片。 更改将显示在客户端的两
我在这里看到了一个代码,该代码以字符串的形式检索鼠标的当前图标,但是此代码使用了TTimer来实现。 因此,我想知道是否存在某些事件(侦听器)来检测鼠标光标图标上的这些更改。 下面是使用TTimer的
我想在我的配置对象上获得一个 onload 事件。 以下工作,除非我创建一个 config.listeners={..} (我认为这就是我需要的?)替换 this.onload({...}); 我什至
通常,在 Java 中,当我有一个向其他对象提供某种通知的对象时,我将使用 Listener/Observer 模式。 有没有更类似于 Scala 的方式来做到这一点?我应该在 Scala 中使用这种
我有一个带有动画器的游戏对象和一些可以触发事件的动画(具有特定的回调函数)。 只要我将脚本添加到与动画器相同的游戏对象(包括接收器),一切都会正常工作: public class AnimatorEv
我有一个带有监听器的 DialogFragment,用于单击按钮以调用 fragment 中的函数。 我收到 lateinit property listener has not been initi
这个问题已经有答案了: Java ActionListener error: incompatible types (4 个回答) 已关闭 5 年前。 我最近刚刚开始学习 Java 代码。我在添加监听
我的代码遇到问题。我想知道是否有一种更简单的方法来使用监听器,而不是不断地这样做: example.addActionListener(new java.awt.event.ActionListene
有没有办法使用 .net 创建控制台应用程序。或通过某个端口监听 SMTP 消息的服务? 我需要创建一个中间层对象来捕获和处理 smtp 消息。也就是说,我希望该监听器发送和接收 smtp 消息,然后
我有一个带有动画器的游戏对象和一些可以触发事件的动画(具有特定的回调函数)。 只要我将脚本添加到与动画器相同的游戏对象(包括接收器),一切都会正常工作: public class AnimatorEv
我有许多向主事件生成服务注册的监听器。然而,我想告诉听众,事件流在某个时刻将会结束。您会通过简单地调用监听器上的方法(例如 finish())来完成此操作,还是有一个单独的事件方法 streamFin
我的代码有什么问题。 我创建了一个 JList,添加了项目并将其推到左侧(BorderLayout.WEST)。每次单击列表项时,我希望在列表右侧显示一个面板。但问题是,当选择列表项并运行监听器时,到
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
这可能是一个简单的问题,但我没有看到它。 我有一个界面 public interface RenderableListener{ public void update(T element);
有人可以直接指出我的正确方向吗?当从组合框中选择适当的选项时,我希望小程序中的 Action 监听器显示从 html 文件检索的 jlabel 中的 3 个参数之一。 干杯 最佳答案 对于组合框,您需
我有一个网站,每个页面上都有许多 jQuery 事件处理程序,所有这些都在一个大型 .js 文件中。 这意味着对于任何页面,大多数事件处理程序都是针对不存在且根本不会使用的 HTML。 这会影响我的表
我有一些 jQuery 监听器设置,用于监听 type="text" 字段上的表单输入。但是,当用户从自动完成下拉框中选择一个选项(即他们之前输入的值已被记住以供将来使用)时,下面的监听器不会收集该值
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我正在用 unity (c#) 做一个类似国际象棋的游戏,但我在尝试进行向上转换以将信息从一个 child 发送到另一个抽象类时遇到了困难。 基本上,我有一个抽象类,它有一个带有函数的事件/委托(de
我是一名优秀的程序员,十分优秀!