0
Paypal IPN을 사용할 때 큰 문제가 있습니다. 샌드 박스를 사용할 때 IPN이 제대로 작동하고 데이터베이스와 대화하고 (전화를 확인하기 위해 이메일을 보냅니다) Paypal이 IPN과 통신하지 않습니다
<?php
$email_account = "*****@****.fr";
$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}
$header = "POST /cgi-bin/webscr HTTP/1.0\r\n";
$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";
$fp = fsockopen('ssl://www.paypal.com', 443, $errno, $errstr, 30);
$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'];
parse_str($_POST['custom'],$custom);
$body = 'Appel avec l\'IPN \n
Appel réussi';
mail('****@gmail.com','test IPN', $body);
if (!fp) {
}
else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {
if ($payment_status == "Completed") {
if ($email_account == $receiver_email) {
// Mysql query
mail('****@gmail.com','test IPN', 'Transaction réussi');
} //end if ($email_account == $receiver_email)
else {
mail('****@gmail.com','test IPN', 'Erreur transaction');
} // end else ($email_account == $receiver_email)
exit();
} // end if ($payment_status == "Completed")
} // end if(strcmp ($res, "VERIFIED") == 0)
else if (strcmp ($res, "INVALID") == 0) {
} // end else if (strcmp ($res, "INVALID") == 0)
} // end while
fclose ($fp);
} // end else of (!$fp)
페이팔이 연락 할 수없는 이유는 당신이 어떤 생각을 가지고 있습니까 : 나는 그것이 작동하는지 확인하기 위해 내 진짜 계정을 사용하고자 할 때 단, IPN은 여기
내 코드입니다 .. 알려져 있지 않다 IPN?
미리 답변 해 주셔서 감사합니다.
생방송 PayPal 계정에서 IPN을 활성화하고 구성 했습니까? –