php - could script timeout cause javascript to fail at end of page? -
I have a simple PHP upload page, when Javascript goes a little bit to show a form when the upload is finished And the 'Save' button I enter different bits of information.
When I upload a large file 100-200mb, I think the upload is hanging or hanging in. Javascript never shows the form.
Is there a way to set execution time on a particular php page, so that the problem is that I can take a lot of time to execute it?
you can use ...
ini_set (' Max_execution_time ', 0);
... to determine the execution time limit for 'unlimited' for the currently executed script. Alternatively, you specify it to be defined by zero (unit seconds) to zero You can set more value.
Comments
Post a Comment