I'm putting a paypal checkout onto my website but am falling down with the listener. For those of you who are unfamiliar with the Paypal IPN system, basically Paypal sends your script with a message about the transaction, which you send back with a couple of bits added. If Paypal receives the correct reply, it'll reply with 'VERIFIED', and if not it'll say 'INVALID'.

I've succeeded with the first bit. My code is able to receive the info from paypal, add on the extras and post it back. However, I get no response from the Sandbox saying either 'VERIFIED' or 'INVALID'. I've pretty much copied my code from the paypal website so I was hoping this was going to be fairly straightforward, so if you could take a minute to look at my code, perhaps some new eyes could pick out where I've gone wrong.

Here's the code. Nothing special, it literally just gets the info, adjusts it, passes it back and reads the response (which it either isn't getting or doesn't realise it's getting)

<?php

$debug=true;

//Put together postback info

$postback = 'cmd=_notify-validate';

foreach($_POST as $key =>$value){
     $postback .= "&$key=$value";
}

// build the header string to post back to PayPal system to validate
$header = "POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .= "Host: www.sandbox.paypal.com\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($postback) . "\r\n\r\n";

$fp = fsockopen ('www.sandbox.paypal.com', 80, $errno, $errstr, 30);//open the connection

if(!$fp){ //no conn
    die();
}

//post data back
fputs($fp, $header . $postback);

while(!feof($fp)){

    $res=fgets ($fp, 1024);

    if((strcmp($res, "VERIFIED")) == 0){ //verified!
        if($debug){         
            $filename = 'debug/debug5_verified.txt'; //create a file telling me we're verified
            $filehandle=fopen($filename, 'w');
            fwrite($filehandle,'VERIFIED!');
            fclose($filehandle);
        }
    }
}

?>

Thanks in advance!

link|improve this question
feedback

4 Answers

Switch over to using the HTTPS url, I'm not sure when but recently all of my test scripts started failing on the plain HTTP version. They look to be migrating over.

I'm using the same paypal sample code you are:

    $fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30);    

or

    $fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);
link|improve this answer
Thanks for your help! Could you tell me how you made the switch? – user1070084 Nov 28 '11 at 22:46
added sample code. – preinheimer Nov 29 '11 at 0:04
1  
For background on this change: x.com/content/bulletin-ip-address-expansion-paypal-services – Robert Nov 29 '11 at 12:36
Thanks again for the help! – user1070084 Nov 29 '11 at 16:00
feedback
up vote 3 down vote accepted

So I think I found a solution. Turns out it wasn't having trouble with connecting to ssl://sandbox...., it was actually retrieving the answer. The code was getting hung up on the

while(!feof($fp)){
    $res=fgets($fp,1024);
}

bit. All I did was replace it with:

$res=stream_get_contents($fp, 1024);

and it worked first time! Now I can get on with my life. Thanks again for all the help on this one.

link|improve this answer
feedback

I've noticed that the URL you are posting to is a little different than below, could this be it?

this is from the IPN Testing help page:

Check that your are posting your response to the correct URL, which is https://www.sandbox.paypal.com/cgi-bin/webscr or https://www.paypal.com/cgi-bin/webscr, depending on whether you are testing in the Sandbox or you are live, respectively.

Verify that your response contains exactly the same IPN variables and values in the same order, preceded with cmd=_notify-validate.

Ensure that you are encoding your response string and are using the same character encoding as the original message.

EDIT: Sorry I also wanted to mention that the port for HTTP and HTTPS are different, 80 as opposed to 443. I'm not too familiar with Paypal API but could look into it as I see you are using 80.

link|improve this answer
Thanks for the help! I tried every combination of everything and still drew a blank, but I'll show you what I tried: Mostly I changed the $fp variable and left $header =."Host:...." alone or commented it out. I'm not sure whether I made it clear, but before I was getting a successful connection (according to my code) to the site I was connecting to, i.e. $fp was valid, and as such the condition if(!$fp) wasn't being met. Every combination I've tried since your post hasn't worked. Oddly, $fp=fsockopen('h ttp://w ww.san...com' 80,,, 30) DIDN'T work (but it does work with the 'http' removed). – user1070084 Nov 28 '11 at 22:44
have you tried changing 80 to 443 in your $fp variable? – Ace Nov 28 '11 at 22:54
Yes sorry, I tried both 80 and 443 for all combinations of https:// http:// or just www. I also tried it with the /cgi-bin/webscr added on the end, but the only combination that works is www.sand... and port 80. – user1070084 Nov 28 '11 at 22:57
could you try using ssl:// instead of https:// (while keeping port 443) to see if that works – Ace Nov 28 '11 at 23:03
Thanks again! Although when I add ssl:// it can't send the IPN. It just hangs and says that it can't access the website. – user1070084 Nov 28 '11 at 23:13
show 3 more comments
feedback

I think I have the same problem.

My hosting doesn't support SSL protocol so my IPN script call :

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

The socket was open (no error)... than I send my string to it

if ($fp===false) {
// HTTP ERROR Failed to connect
}
else
{
$res_val = fputs($fp, $header . $req);
$res=stream_get_contents($fp, 1024);
....
}

I checked $res_val and it's ok... it conteins the number of bytes writed to the soket but $res is always an empty string. Why?? someone can help?

link|improve this answer
1  
If you need to ask a question do it as a new question, not an answer to an old question. – VirtualBlackFox Dec 16 '11 at 12:17
feedback

Your Answer

 
or
required, but never shown

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