Maximum execution time in phpMyadmin? [closed]

时光总嘲笑我的痴心妄想 提交于 2019-12-13 04:01:04

问题


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

回答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



来源:https://stackoverflow.com/questions/33641935/maximum-execution-time-in-phpmyadmin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!