This is important because I have a e-commerce site and I can't have a browser time out in the middle of payment processing! I have set_time_limit(0)
in my PHP script so the script doesn't time out. But what about the user's browser? How long until it times out?
Note: data is returned to the browser only near the end of the script - most of the time involved is server work.
Also, is it possible for me to change the browser timeout length?
I need info for IE6+, Chrome, Opera, Safari, and Firefox. Thanks.