[PHP] Re: CGI Timeout

2003-07-29 Thread Pete Morganic
increase the time limit http://uk.php.net/manual/en/function.set-time-limit.php Imran wrote: Hi, i facing a error during uploading a big size file (abt 200 MB). i incred = upload file size in php.ini and also incred connection time in IIS (web = server), but i getting again this below written err

[PHP] Re: CGI Timeout

2003-07-29 Thread Shaunak Kashyap
This *might* work: At the top of your script that processes the uploaded file try adding this line: set_time_limit(0); This essentially removes any restrictions on the maximum execution time for a script. For more information visit: http://www.php.net/manual/en/function.set-time-limit.php Hope

[PHP] Re: cgi timeout

2001-08-17 Thread Raymond Siow
I have just tried the set_time_limit() function and it still doesn't work Ray Raymond Siow wrote: > Hi: > > I am trying to run a script and it supposed to take a lot of time... so > I set the max_execution_time in the config file to 0... (i think that's > wat it's for no time limit) but af