I am trying to integrate PayPal IPN on a website. For some reason the IPN listener is neither verifying the payment or marking it invalid. I have placed mail()
functions at different points in the code to notify me how much of the program is being run.
I have tried with and without using trim()
on the $res
variable. Both ways fail.
Here is my code:
$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}
mail('test@test.net', 0, 0); //EMAIL RECEIVED
$header = "POST /cgi-bin/webscr HTTP/1.0
";
$header .= "Content-Type: application/x-www-form-urlencoded
";
$header .= "Content-Length: " . strlen($req) . "
";
$fp = fsockopen ('ssl://www.sandbox.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'];
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$address_street = $_POST['address_street'];
$address_city = $_POST['address_city'];
$address_zip = $_POST['address_zip'];
$address_state = $_POST['address_state'];
$address_country = $_POST['address_country'];
$contact_phone = $_POST['contact_phone'];
$payer_id = $_POST['payer_id'];
if (!$fp) {
//HTTP Error
mail('test@test.net', 1, 1);
} else {
fputs ($fp, $header . $req);
mail('test@test.net', 2, 2); //EMAIL RECEIVED
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp (trim($res), "VERIFIED") == 0) {
mail('test@test.net', 3, 3);
} else if (strcmp (trim($res), "INVALID") == 0) {
mail('test@test.net', 4, 4);
} else {
mail('test@test.net', 5, 5); //EMAIL RECEIVED
}
}
fclose ($fp);
}
}
The emails I am getting are 0, 2, and 5.