I get a PHP error - maximum execution time exceeded. What is this?
Now, if nothing major is going on in your script then it could be you have something like an infinite loop - check carefully. If you expect the script to take a long time to run, but want it to do so, then you will need to up the time on the server.
If you want to set to infinite time, you can add a line at the top of the script:
set_time_limit(0);
Note that depending on settings you may need to do this in your php.ini file if you have access to it.
Comment on this Question and Answer >>>
ASK A QUESTION
More errors PHP Questions
I get the error message headers already sent, what does this mean?PHP error - use of undefined constant at line x... what does this mean?
Is it possible to create php programs and view them if my operating system is DOS, not unix? Whether I create a DocumentRoot of C:\public_html, or C:/public_html, in my httpd.conf file, the result is: When go to http://127.0.0.1, I see: Index of
I have 2 forms in one website... What do I name the php files for each form? The first php file is named: send_form_email.php, what do I name the second, or do they both go in the same php file?
I get a PHP warning for array to string conversion - what is this?
