0

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 !

amani92
  • 903
  • 8
  • 22
  • 3
    Please give us more details and show what code causes the error. – Bobface Oct 03 '15 at 21:37
  • 2
    Possible duplicate of [Fatal error: Maximum execution time of 300 seconds exceeded](http://stackoverflow.com/questions/7680572/fatal-error-maximum-execution-time-of-300-seconds-exceeded) – Norbert Oct 03 '15 at 21:41

1 Answers1

2

Add the following at the top of your php script

set_time_limit(0);
ignore_user_abort(1);

set_time_limit - Limits the maximum execution time in seconds (0 is unlimited)
ignore_user_abort - Set whether a client disconnect should abort script execution

Pedro Lobito
  • 94,083
  • 31
  • 258
  • 268