RE: [PHP] Web Browser Timeout on Upload Script

2005-02-23 Thread Jay Blanchard
[snip] I am running a simple Upload script in PHP using a HTML Form with a File field. The user can browse their computer and upload a file. It works great, except for large files, where the browser will timeout. The timeout appears to happen after about 5 minutes. Any ideas on how to get

Re: [PHP] Web Browser Timeout on Upload Script

2005-02-23 Thread Marek Kilimajer
Matt Cassarino wrote: Hi, I am running a simple Upload script in PHP using a HTML Form with a File field. The user can browse their computer and upload a file. It works great, except for large files, where the browser will timeout. The timeout appears to happen after about 5 minutes. Any

Re: [PHP] Web Browser Timeout on Upload Script

2005-02-23 Thread Tim Boring
On Wed, 2005-02-23 at 22:54 +0100, Marek Kilimajer wrote: Matt Cassarino wrote: Hi, I am running a simple Upload script in PHP using a HTML Form with a File field. The user can browse their computer and upload a file. It works great, except for large files, where the browser will

Re: [PHP] Web Browser Timeout on Upload Script

2005-02-23 Thread dpgirago
I think there is a file size argument both in the html form tag and within php.ini (max_file_size...? or something like that). I would try to make both very large, just as a test. Anyway, I had a similar problem that was fixed by playing around with these settings. David Matt Cassarino