y

Erik Jones wrote:

On Mar 29, 2007, at 11:15 AM, Angelo Zanetti wrote:

Hi all.

I have a script on a server that does some processing, now I want to execute that script using cURL. This is a basic scenario and I assume its possible but its not working.

The script is as follows:

   $url = "http://www..../test.php";;
             $ch = curl_init();
       curl_setopt($ch, CURLOPT_URL, $url);
       curl_setopt($ch, CURLOPT_HEADER, 0);
       curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
       curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);// allow redirects
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // return into a variable
       curl_setopt($ch, CURLOPT_TIMEOUT, 100);
       $data = curl_exec($ch);
       curl_close($ch);                     echo "DATA: " . $data;

Now the $url I have taken out the path for obvious reasons.

I get a 500 Internal server error, not sure why as this page being called just inserts a word into a database. Could the cause be something else network related? What else can I troubleshoot? or is my code incorrect?

Well, have you tested callling the script directly from a browser? Also, note that your setting CURLOP_RETURNTRANSFER twice and that my be messing with the curl call.

yes i have tested with the browser, it works fine. I have removed the duplicate entry however its still giving the error do you think they are blocking the request? or should I be doing the request on a certain port?

thanks in advance
--
------------------------------------------------------------------------
Angelo Zanetti
Systems developer
------------------------------------------------------------------------

*Telephone:* +27 (021) 469 1052
*Mobile:*       +27 (0) 72 441 3355
*Fax:*            +27 (0) 86 681 5885
*
Web:* http://www.zlogic.co.za
*E-Mail:* [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to