I run a file hosting website and I notice many temp php upload files are left on /tmp, meaning that the upload could not complete because the user's browser timed out, correct?
I've been reading some posts about this, and I see a lot about php time limit and output buffer.
1- PHP time limit has nothing to do with browser time limit, right? There's no point on raising PHP time limit, because it's not the php that takes too long to run, but the upload, right?
2- How can I prevent browser timeout? I heard I could just send some data to the browser once in a while, but how exactly can I do that without having a never-ending loop?
thanks!