Re: [PHP] max_execution_time and set_time_limit() problem.

2003-03-05 Thread Marek Kilimajer
This should not have anything with time limit, your php script is executed after the upload finishes, you should check max_upload_size and max_post_size (max_upload_size < max_post_size) Eric Wood wrote: Even set_time_limit(0) does extend the timeout. Always a 30 second timeout. Any other idea

Re: [PHP] max_execution_time and set_time_limit() problem.

2003-03-04 Thread Daniel Silva
I have a similar problem. I made a multiple file upload script and when the size is too big, PHP seems to ignore it, even though the files are well inside the max_upload_size... Are you sure that you aren't actually entering an infinite-loop or something? It seems odd... I can't think of nothing

Re: [PHP] max_execution_time and set_time_limit() problem.

2003-03-04 Thread Eric Wood
Even set_time_limit(0) does extend the timeout. Always a 30 second timeout. Any other ideas? thanks, -eric wood > I'm uploading a large file through my web page and after 30 seconds, the > fails with an error. I bumbed the max_execution_time parameter in > /etc/php.ini to 600 seconds and resta

[PHP] max_execution_time and set_time_limit() problem.

2003-03-03 Thread Eric Wood
I'm uploading a large file through my web page and after 30 seconds, the fails with an error. I bumbed the max_execution_time parameter in /etc/php.ini to 600 seconds and restarted apache. Still errors at 30 seconds. I added set_time_limit(600); to various place in my file upload handling scrip