|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-09-06 09:00 UTC] edink@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 19 18:00:02 2025 UTC |
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); ?>