2

Whenever I start XAMPP and start Apache and my SQL and click on the admin button on MySQL to make a new database it shows following error

Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\phpMyAdmin\libraries\dbi\DBIMysqli.class.php on line 290

halfer
  • 19,471
  • 17
  • 87
  • 173

1 Answers1

1

Try this,

ini_set('max_execution_time', 120);

Otherwise goto php ini and look for maxexecutiontime and set it to 120 or whatever u need.

Insane Skull
  • 9,010
  • 9
  • 43
  • 61