ID: 14902
Updated by: sterling
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: cURL related
Operating System: Windows 2000 Server
PHP Version: 4.1.1
New Comment:

Cannot reproduce, works fine with CVS.


Previous Comments:
------------------------------------------------------------------------

[2002-01-07 06:24:14] [EMAIL PROTECTED]

function fetchHeader($url, $returntransfer)
{
        $ch = curl_init ($url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, $returntransfer); 
        curl_setopt ($ch, CURLOPT_HEADER, 1);
        curl_setopt($ch, CURLOPT_NOBODY, 1);    
        curl_setopt($ch, CURLOPT_TIMEOUT, 10);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);    
        curl_exec ($ch);
}

$arrTestUrl = array("www.alle-autos.ch", "www.alpendrifter.ch",
"www.cam-schweiz.ch", "www.bwinfo.ch", "www.canonshop.ch",
"www.bmparch.ch","www.jahaya.ch");
reset($arrTestUrl);
foreach($arrTestUrl as $currUrl)
        { echo $currUrl . "<br>"; flush(); $currUrl = "http://"; . $currUrl;
fetchHeader($currUrl,0); }


Running the above script generates no error. In my case the script
crashed when using fetchHeader($currUrl,1) instead of
fetchHeader($currUrl,1), for every given url.

I am using the curl that comes with php 4.1.1 and php as a CGI
executable.

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=14902&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to