ID:               20263
 Updated by:       [EMAIL PROTECTED]
 Reported By:      kjartan at zind dot net
-Status:           Open
+Status:           Assigned
 Bug Type:         cURL related
 Operating System: Linux RH 7
 PHP Version:      5CVS
-Assigned To:      
+Assigned To:      wez
 New Comment:

Wez, maybe you should tell Daniel what you need for this to work..? :)



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

[2003-01-15 05:56:12] daniel at haxx dot se

Don't wait. Act!

Since I am the single person who develop libcurl on a regular basis, I
can assure you that I don't know what features you're missing and that
I am not likely to add them without being pushed in the right
direction, most preferably with some hands-on help.

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

[2002-11-06 03:56:57] [EMAIL PROTECTED]

That was the plan.
Suspending this for now.
Thanks for being eager to try this out; we're really
waiting for features in the curl library (otherwise
it would be in PHP 4.3).

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

[2002-11-05 10:51:34] kjartan at zind dot net

The option is present in 4.3.0pre2 with no mention of the curlwrappers
being experimental. If it is known this will not work for 4.3 wouldn't
it make sense to remove the configure option from ./configure --help
until it works?

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

[2002-11-05 10:09:09] kjartan at zind dot net

The following script works fine without curlwrappers, but the while
loop never exits with it enabled:

<?php
print "Opening site..\n";
if ($fp = fopen('http://www.cnn.com/', 'r')) {
  print "Reading data..\n";
  while (!feof($fp)) {
    $data .= fgets($fp, 128);
  }
  print "closing file..\n";
  fclose($fp);
  print $data;
}
?>

./configure --with-mysql=/usr/local/ --with-apxs
--sysconfdir--mandir=/usr/local/man/ --enable-calendar --enable-ftp
--with-openssl --without-pear --with-curl=/usr/lib --with-zlib
--enable-tokenizer --with-imap-ssl --with-gd --with-curlwrappers
--disable-mbstring

curl 7.10.1 (i686-pc-linux-gnu) libcurl/7.10.1 OpenSSL/0.9.6d
zlib/1.1.3

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


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

Reply via email to