From:             tcmleung at yahoo dot com
Operating system: Windows XP IIS 5
PHP version:      4.3.8
PHP Bug Type:     Unknown/Other Function
Bug description:  Execution Time Problem

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 bug report at http://bugs.php.net/?id=29994&edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=29994&r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=29994&r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=29994&r=trysnapshot51
Fixed in CVS:                http://bugs.php.net/fix.php?id=29994&r=fixedcvs
Fixed in release:            http://bugs.php.net/fix.php?id=29994&r=alreadyfixed
Need backtrace:              http://bugs.php.net/fix.php?id=29994&r=needtrace
Need Reproduce Script:       http://bugs.php.net/fix.php?id=29994&r=needscript
Try newer version:           http://bugs.php.net/fix.php?id=29994&r=oldversion
Not developer issue:         http://bugs.php.net/fix.php?id=29994&r=support
Expected behavior:           http://bugs.php.net/fix.php?id=29994&r=notwrong
Not enough info:             http://bugs.php.net/fix.php?id=29994&r=notenoughinfo
Submitted twice:             http://bugs.php.net/fix.php?id=29994&r=submittedtwice
register_globals:            http://bugs.php.net/fix.php?id=29994&r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=29994&r=php3
Daylight Savings:            http://bugs.php.net/fix.php?id=29994&r=dst
IIS Stability:               http://bugs.php.net/fix.php?id=29994&r=isapi
Install GNU Sed:             http://bugs.php.net/fix.php?id=29994&r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=29994&r=float

Reply via email to