Fatal error maximum execution time in wamp server

Fatal error maximum execution time in wamp server
When you will try to import a database which is little bigger like 5 or 10 MB in to wamp server in windows then you will get this error.

This error occurs when you importing mysql file into local mysql database.

edit the config.inc.php in phpmyadmin folder and then
add this line $Cfg[‘ExecTimeLimit’]=0;

or

change max_execution_time=1000 in php.ini (restart wamp server to take effect).
This way you can get rid of Fatal error maximum execution time in wamp server.

Leave a comment