0

When I try to go phpMyadmin I get this error

Fatal error: Maximum execution time of 30 seconds exceeded in 
             C:\xampp\phpMyAdmin\libraries\session.inc.php on line 108
RiggsFolly
  • 93,638
  • 21
  • 103
  • 149
Bobox
  • 21
  • 1
  • 7

1 Answers1

1

Bobox,

You are editing the wrong php.ini file. There are 2 php.ini files.

One is in \xampp\php\php.ini, this file only effects PHP that you run from the command line.

The other is in \xampp\apache\bin\php.ini this is the file that Apache uses when it runs, so this is the file you need to amend to effect the execution of phpMyAdmin.

So edit \xampp\apache\bin\php.ini

Find the max_execution_time parameter and change it to

max_execution_time=600

Then restart Apache, so that it reads this change then try running whatever you are doing in phpMyAdmin again.

If it still errors, try increasing the time parameter to 900, etc, until whatever it is works

RiggsFolly
  • 93,638
  • 21
  • 103
  • 149