我已經使用完全相同的代碼從貝寶,並嘗試從PayPl沙箱從IPN模擬器得到響應。我在我的網站上設置了ipn.php文件,我將得到IPN響應,並具有下面的代碼。仍然我沒有得到任何郵件的VERIFIED或INVALID狀態,如我在下面的代碼中所述。所以請讓我知道我的代碼中缺少什麼或者什麼是錯誤的,所以我可以糾正它。Paypal沙箱IPN模擬器 - 沒有得到迴應
<?php
$raw_post_data = file_get_contents('php://input');
$raw_post_array = explode('&', $raw_post_data);
$myPost = array();
foreach ($raw_post_array as $keyval) {
$keyval = explode ('=', $keyval);
if (count($keyval) == 2)
$myPost[$keyval[0]] = urldecode($keyval[1]);
}
$req = 'cmd=_notify-validate';
if(function_exists('get_magic_quotes_gpc')) {
$get_magic_quotes_exists = true;
}
foreach ($myPost as $key => $value) {
if($get_magic_quotes_exists == true && get_magic_quotes_gpc() == 1) {
$value = urlencode(stripslashes($value));
} else {
$value = urlencode($value);
}
$req .= "&$key=$value";
}
$ch = curl_init('https://www.sandbox.paypal.com/cgi-bin/webscr');
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $req);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Connection: Close'));
if(!($res = curl_exec($ch))) {
// error_log("Got " . curl_error($ch) . " when processing IPN data");
curl_close($ch);
exit;
}
curl_close($ch);
if (strcmp ($res, "VERIFIED") == 0) {
$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'];
mail('[email protected]', 'PayPal IPN', 'Working...');
}
else if (strcmp ($res, "INVALID") == 0)
{
// log for manual investigation
mail('[email protected]', 'PayPal IPN', 'NOT Working...');
}
?>
我曾嘗試使用測試商家和買家,以測試帳戶在貝寶沙箱。我可以看到IPN歷史測試商家帳戶。在那裏我可以看到HTTP響應代碼= 200,所以我想我的ipn腳本是通過貝寶訪問的。 0.25美元的金額從買方賬戶中扣除並存入商業賬戶,所以我猜這部分工作正常。
現在我已經在單個變量中傳遞了2個值。
<input type="hidden" name="custom" value="mem001::mempass001">
然後,我試圖接收我的ipn.php(ipn腳本在此頁面上)頁面上的「自定義」變量的值。使用PHP函數我已經分離了兩個值並存儲在不同的變量中。
爲了測試目的,我試圖在數據庫中存儲以上值,但值不存儲到數據庫中。
那麼最後我到底做了什麼錯誤?我怎樣才能確保在上述所有流程之後,我真的從IPN獲得「VERIFIED」狀態?請幫忙。
你好,感謝您的回覆。我檢查了我的Windows Plesk控制面板,查看訪問和錯誤日志,但找不到任何地方。你能指導如何訪問它們嗎? – KRA 2013-02-27 04:10:09
請忽略我的上述評論。我根據您的建議張貼答案,請回復。 – KRA 2013-02-27 06:00:07