所以我最近創建的PayPal IPN腳本,但是當我和沙盒(測試)帳戶測試它,我看到了問題,一切都非常好,但它只是沒有在數據庫中插入任何數據,良好的驗證部分只是沒有工作,neather做了INVALID部分,沒有工作。 你可以看看我的劇本在這裏 -貝寶IPN的腳本不能正常工作
<?php
// PHP 4.1
// 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.0\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'];
if (!$fp) {
// HTTP ERROR
} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {
if($receiver_email == '[email protected]')
{
include('../database.php');
$result = mysql_query("SELECT * FROM `smscodes` WHERE code = '$item_number';");
$select_id = mysql_fetch_array($result);
mysql_query('UPDATE `advertisements` SET status="accepted" WHERE id = "'.$select_id['adv-id'].'"');
mysql_query("DELETE FROM `smscodes` WHERE `code` = '".$item_number."' LIMIT 1");
}
}
else if (strcmp ($res, "INVALID") == 0) {
$to = '[email protected]';
mail($to, "Error, something is wrong with paypal script", "Error, something is wrong with paypal script");
}
}
fclose ($fp);
}
?>
我的按鈕 -
<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="[email protected]">
<input type="hidden" name="currency_code" value="EUR">
<input type="hidden" name="item_name" value="Add Advertisement">
<input type="hidden" name="amount" value="3.00">
<input type="hidden" name="item_number" value="<?php echo $_SESSION['code']; ?>">
<input type="hidden" name="return" value="http://site.com">
<input type="hidden" name="notify_url" value="mysite.com/tsatstastast/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>
在貝寶IPN的歷史它顯示了HTTP 200成功,但我沒有任何線索,爲什麼它不會在數據庫中插入任何內容。 database.php文件沒問題,它裏面有數據庫的所有信息。希望你能幫助我解決這個問題。 編輯:忘了提,使用PayPal測試工具,在這裏您將IPN腳本代碼,並驗證其是否工作,一切偉大的工作。但用按鈕和測試帳戶它不。哦,smscodes表,這是正確的,我使用paypal和短信付款相同的表,所以不用擔心它;)! 編輯:試圖改爲ssl://www.sandbox.paypal.com但沒有機會,現在生病嘗試調試它。 編輯3:所以我只是發現錯誤,它是在PayPal沙箱帳戶設置,沒有打開通知消息。現在我收到一封郵件,說郵件($ to,「錯誤,貝寶腳本有問題」,「錯誤,貝寶腳本有問題」); ,所以失敗了。該怎麼做,任何幫助將不勝感激! 最好的問候, Valters
如果您在沙箱正在測試則腳本應該連接到'SSL:// www.sandbox.paypal.com'。我不知道如果您在IPN向您發送沙盒通知時嘗試驗證實際的PayPal網站會發生什麼情況。 – animuson
前段時間我有類似的問題,我從來沒有真正嘗試過我給的解決方案,所以我不會把它作爲一個實際的答案。但它可能有助於閱讀SgtPooki的回答,我相信它應該有所幫助。 – Joe