Fatal Error:maximum execution time of 30 error in program development is that your program executes for 30 seconds, but why is the 30 second page not 50,10,20 seconds, this 30 is the default PHP script run time, If you want to change it very simple, let me look at the solution to some of the problems.
Error hints
PHP appears Fatal error:maximum execution time of seconds exceeded in d:xxuserlogin.class.php for line 10 solutions:
Modify PHP.ini:
Max_execution_time = 300 time, and then restart service IIS
Or in the program to write
Set_time_limit (time); 0 is unrestricted.
Max_execution_time = 30; Maximum execution time of each script, in seconds
Set it to the value you want. If it is set to 0, it will never expire.
phpMyAdmin appears fatal Error:maximum execution time of 300
The exact location may not be the same. Mine is under the mylocalhostphpmyadminlibraries.
Found: $cfg [' exectimelimit '] = 300;
Change to $cfg [' exectimelimit '] = 3000;
http://www.bkjia.com/PHPjc/632102.html www.bkjia.com true http://www.bkjia.com/PHPjc/632102.html techarticle in the development of the program fatal Error:maximum execution time of 30 error, is that your program executes over 30 seconds, but why is 30 seconds page is not 50,10,20 seconds, this 30 is ph ...