Is the browser timeout due to a large request?

Suppose I use a web browser to upload a huge file (may be several GB), it may take several hours to transfer all the data to the server. Assume that the server does not have the size of the file upload Limits, it just gobbles up data all the time. Will the browser work hard for a few hours to transfer all the data? Or the browser will prompt some errors after a period of time? Or a browser-specific problem?
No matter which web server (Apache, IIS, etc.) you are using, the request will always time out at some point. The default value is usually a few minutes, so you need to increase these. There are other restrictions, such as the maximum file size you must increase. An example of doing this with PHP/Apache can be found here:
Increase max_execution_time in PHP?

Assuming I use a web browser to upload a huge file (may be a few GB), it may take several hours to transfer all the data to the server. Assume that the server does not have the size of the file upload Limits, it just gobbles up data all the time. Will the browser work hard for a few hours to transfer all the data? Or the browser will prompt some errors after a period of time? Or a browser-specific problem?

No matter which web server you are using (Apache, IIS, etc.), the request will always time out at some point. The default value is usually a few minutes, so you need to increase these .There are other restrictions, such as the maximum file size you must increase. An example of doing this with PHP/Apache can be found here:
Increase max_execution_time in PHP?

Leave a Comment

Your email address will not be published.