I got this error in EasyPhp when I try to access to EasyPhp MyAdmin to see my database.
Fatal error: Maximum execution time of 30 seconds exceeded in C:\Program Files (x86)\EasyPHP-DevServer-14.1VC9\modules\phpmyadmin414x150807154856\libraries\dbi\DBIMysqli.class.php on line 285
Please Help !
Ads this at the top of your php
script
set_time_limit(0);
ignore_user_abort(1);
set_time_limit - Limits the maximum execution time (0 is unlimited)
ignore_user_abort - Set whether a client disconnect should abort script execution