ID: 21873
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Verified
Bug Type: cURL related
Operating System: FreeBSD 4.7
-PHP Version: 4.3.0
+PHP Version: 4.3.1-dev
New Comment:
Verified with this script:
<?php
$ch = curl_init("https://solo3.merita.fi/cgi-bin/SOLO0001");
curl_setopt($ch, CURLOPT_HEADER, 0);
$fp = tmpfile();
curl_setopt ($ch, CURLOPT_FILE, $fp);
curl_exec($ch);
curl_close($ch);
// fseek($fp,1,SEEK_SET); // uncomment this and it works..
fseek($fp,0,SEEK_SET);
$result = fgets($fp,1024);
fclose($fp);
var_dump($result);
?>
Outputs:
bool(false)
Previous Comments:
------------------------------------------------------------------------
[2003-02-12 03:33:25] [EMAIL PROTECTED]
After try php4-STABLE-200302120830
Nothing changed.
fseek($fp,0,SEEK_SET); not work.
Version 4.2.1 work correct
Config command:
./configure --prefix=/home/u6394/php --with-mysql=/usr/local
--with-zlib --with-config-file-path=/home/u6394/php43 --with-gd
--with-jpeg-dir=/usr/local --with-t1lib --disable-debug
--enable-force-cgi-redirect --with-mod_charset --without-pear
--disable-rpath --enable-sockets with-openssl
--with-curl=/home/u6394/curl
Module tested:
sapi/cgi/php
------------------------------------------------------------------------
[2003-02-10 12:56:16] [EMAIL PROTECTED]
Please try using this CVS snapshot:
http://snaps.php.net/php4-STABLE-latest.tar.gz
For Windows:
http://snaps.php.net/win32/php4-win32-STABLE-latest.zip
------------------------------------------------------------------------
[2003-01-25 03:39:14] [EMAIL PROTECTED]
It's fseek BUG
Whe i modify code to
fseek($fp,1,SEEK_SET);
fseek($fp,0,SEEK_SET);
All work correctly
------------------------------------------------------------------------
[2003-01-25 02:23:21] [EMAIL PROTECTED]
This function return empty result. In PHP 4.2.1 all work correctly.
function _HttpsReq($addr)
{
$ch = curl_init("https://192.0.0.1".$addr);
curl_setopt($ch, CURLOPT_HEADER, 0);
$fp = tmpfile();
// fwrite($fp," ");
curl_setopt ($ch, CURLOPT_FILE, $fp);
curl_exec($ch);
curl_close($ch);
fseek($fp,0,SEEK_SET);
$result = fgets($fp,1024);
fclose($fp);
return $result;
} //return empty result
When i uncomment string fwrite($fp," "); All work correctly.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=21873&edit=1