Thanks, Andrew. I seem to remember seeing that somewhere else in the forum, but it wasn't specific enough. Exactly how do you send a 200 OK response? I have googled around looking for an answer, and I have learned a bit about LWP, but I can't seem to find out how to do it.
I'm using the standard coding on my IPN page:
use LWP::UserAgent;
$ua = new LWP::UserAgent;
$req = new HTTP::Request 'POST','http://www.sandbox.paypal.com/cgi-bin/webscr';
$req->content_type('application/x-www-form-urlencoded');
$req->content($query);
$res = $ua->request($req);
I assume that the 200 OK goes in the request object, but don't know how to put it there.
Professor
http://www.professorsopportunities.com