ID:               11804
 Comment by:       axegen at hotmail dot com
 Reported By:      alberty at neptunlabs dot de
 Status:           Closed
 Bug Type:         cURL related
 Operating System: i686-pc-linux-gnu
 PHP Version:      4.0 Latest CVS (2001-06-29)
 New Comment:

hi,

curl_error still does not work.

curl_errno($ch) continues to return a strange value like 1119632216 and
curl_error($ch) returns strange text.

using cURL 7.8, PHP 4.3, Apache, linux-i686

-a


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

[2001-07-02 08:06:53] [EMAIL PROTECTED]

.

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

[2001-07-02 08:06:34] [EMAIL PROTECTED]

Fixed in cvs.

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

[2001-06-29 13:46:53] alberty at neptunlabs dot de

Hi,

- cURL 7.8, PHP CVS, Apache 1.3.20, linux-i686

curl_errno doesnt work with follow code:

------

<?php
$url="http://www.foo.com";;
$ch = curl_init ($url);
$header_file = fopen ("header_curl.dat", "w");
$content_file = fopen ("content_curl.dat", "w");

curl_setopt ($ch, CURLOPT_FILE, $content_file);

curl_setopt ($ch, CURLOPT_WRITEHEADER, $header_file);
curl_setopt ($ch, CURLOPT_REFERER, $url);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt ($ch,       CURLOPT_NOPROGRESS, true);
curl_setopt ($ch,       CURLOPT_TIMEOUT, 30);

$result=curl_exec ($ch);
$returncode=curl_getinfo($ch, CURLINFO_HTTP_CODE);
$totaltime=curl_getinfo($ch,CURLINFO_TOTAL_TIME);
$realurl=curl_getinfo($ch,CURLINFO_EFFECTIVE_URL);
$contentsize=curl_getinfo($ch,CURLINFO_SIZE_DOWNLOAD);

if (curl_errno($ch)>0){
        $error=curl_error($ch);
        echo $error;
}
fclose($header_file);
fclose($content_file);
?>

------

curl_errno($ch) results a wrong error number and also curl_error($ch)
contains broken strings.

-- 
Steve

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


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

Reply via email to