ID:               29994
 Updated by:       [EMAIL PROTECTED]
 Reported By:      tcmleung at yahoo dot com
-Status:           Open
+Status:           Bogus
 Bug Type:         Unknown/Other Function
 Operating System: Windows XP IIS 5
 PHP Version:      4.3.8
 New Comment:

You need to change IIS default timeout.


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

[2004-09-06 08:49:11] tcmleung at yahoo dot com

Description:
------------
The Webserver is IIS 5, with Windows XP, IIS NTLM authentication and
SSL encryption.
No matter how I set the time limit, the download process would
terminate after 5 minutes (300 seconds). See the following sample
script.


Reproduce code:
---------------
<?
$filename="abc.txt"  //very very big file--over 500MB
$fp=fopen($filename,'r');
//fpassthru($fp);

while (!feof($fp)) {
  set_time_limit(299);
  echo fread($fp, 8192);
}
fclose($fp);
?>



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


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

Reply via email to