UPDATE 1:

Writing $res to a textfile just returns the word VARIFIED:

<?php  
/*  
mysql_connect("localhost", "user", "password") or die(mysql_error());  
mysql_select_db("PayPal") or die(mysql_error());  
*/

// 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.sandbox.paypal.com', 443, $errno, $errstr, 30);  

if (!$fp) {  
// HTTP ERROR  
} else {  
fputs ($fp, $header . $req);  
while (!feof($fp)) {  
$res = fgets ($fp, 1024);  
if (strcmp ($res, "VERIFIED") == 0) {  

$ourFileName = "payment_successful.txt";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
fwrite($ourFileHandle, $res);
fclose($ourFileHandle);


}  

else if (strcmp ($res, "INVALID") == 0) {  

$ourFileName = "payment_failed.txt";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
fwrite($ourFileHandle, $res);
fclose($ourFileHandle);

}  
}  
fclose ($fp);  
}  
?> 

ORIGINAL QUESITON:

I have the following IPN (Instant Payment Notification) script, which works, i.e. it creates a successful file if successful and a failed file if failed.

Does paypal return post values to the IPN file so I can figure out which payment was successful or which payment has failed?

If yes, how do I access these values.

If no, how do I figure out which payment has been accepted or declined?

This is the script in the IPN file I currently have:

<?php  
// 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.sandbox.paypal.com', 443, $errno, $errstr, 30);  

if (!$fp) {  
// HTTP ERROR  
} else {  
fputs ($fp, $header . $req);  
while (!feof($fp)) {  
$res = fgets ($fp, 1024);  
if (strcmp ($res, "VERIFIED") == 0) {  

$ourFileName = "payment_successful.txt";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
fclose($ourFileHandle);

}  

else if (strcmp ($res, "INVALID") == 0) {  

$ourFileName = "payment_failed.txt";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
fclose($ourFileHandle);

}  
}  
fclose ($fp);  
}  
?>  
link|improve this question

Nevermind, I figured out what paypal is returning. – oshirowanen Apr 8 '11 at 8:30
feedback

2 Answers

up vote 3 down vote accepted

You have the answer in your generic script.

Paypal will return the word VERIFIED or INVALID in the string.

($res, "VERIFIED") == 0

A good trick is to write the value of $res to your log and you will see the returned result right at the end.

Make sure you use the sandbox for testing as well.

Also there is a forum at http://x.com (how much did they pay for THAT domain?)

FWIW, Paypal's IPN is a PITA.

link|improve this answer
Is it possible to write the contents of $res to the file being created, as i think it would be difficult to echo the content as that is a page initiated by paypal. – oshirowanen Apr 8 '11 at 8:02
you can't echo the content, or better, you can but who cares? IPN transaction is server2server so only the server will see the echo, you have to write it into a logfile or in a database, pay attention that PayPal IPN send you data in ONE WAY and want data back in the SAME WAY, or better: PayPal send to you var1=res1&var2=res2&var3=res3, you CAN'T send them back as var2=res2&var1=res1&var3=res3, you must respect the order... AFAIK when I writed my own IPN I had lot of trouble with that, cause seems to me that $_POST[] do not respect the data-order so I readed directly php://input – MiPnamic Apr 8 '11 at 8:10
@MiPnamic, I wrote the content of $res to a file, and it just contains the word VARIFIED. I don't understand how to find out which payment paypal is confirming via the above IPN file, so I can update the correct record in my database. I have updated the above question to show the current code which writes the data in $res to a text file. – oshirowanen Apr 8 '11 at 8:15
foreach ($_POST as $key => $value) { $value = urlencode(stripslashes($value)); $req .= "&$key=$value"; } as you can see, this will fetch the data via the $_POST variable, so if you want to track the payment (and you "have" to do it) you need to write somewhere the $_POST content, where are stored the information about the payment. – MiPnamic Apr 8 '11 at 8:52
feedback

hi i implemented mine this way

foreach ($_POST as $key => $value)
{
    $data[$key] = $value;
}

doing a echo '<pre>'.print_r($data,true).'</pre>';

would produce something like this :

cmd=_notify-validate
test_ipn=1
payment_type=echeck
payment_date=22:21:28 Mar 24, 2011 PDT
payment_status=Completed
address_status=confirmed
payer_status=verified
first_name=John
last_name=Smith
payer_email=buyer@paypalsandbox.com
payer_id=TESTBUYERID01
address_name=John+Smith
address_country=United+States
address_country_code=US
address_zip=95131
address_state=CA
address_city=San+Jose
address_street=123%2C+any+street
business=seller@paypalsandbox.com
receiver_email=seller@paypalsandbox.com
receiver_id=TESTSELLERID1
residence_country=US
item_name=something
item_number=AK-1234
quantity=1
shipping=3.04
tax=2.02
mc_currency=USD
mc_fee=0.44
mc_gross=12.34
txn_type=web_accept
txn_id=28325521
notify_version=2.1
custom=xyz123
invoice=abc1234
charset=windows-1252
verify_sign=AFcWxV21C7fd0v3bYYYRCpSSRl31AM3F5ODR-2hb2fIsWPHepIEPzAwg
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.