Fatal error: Maximum execution time of 30 错误解决办法_PHP教程
程序员文章站
2022-05-10 21:30:19
...
在程序开发中出现Fatal error: Maximum execution time of 30错误,是指你的程序执行时间超了30秒,但为什么是30秒页不是50,10,20秒呢,这个30是php默认的脚本运行时间了,如果大家要修改很简单,下面我来看看解决些问题的办法。
错误提示
php 出现 Fatal error: Maximum execution time of 30 seconds exceeded in D:xxuserlogin.class.php on line 10的解决办法:
修改php.ini:
max_execution_time = 300 时间,然后重起服务iis
或者在程序写
set_time_limit(时间); //0为无限制.
max_execution_time = 30; Maximum execution time of each script, in seconds
把它设置成需要的值就可以了。如果设置成0的话,就是永不过期。
phpmyadmin出现Fatal error: Maximum execution time of 300
具体位置可能不一样。我的在 mylocalhostphpMyAdminlibraries下
找到:$cfg['ExecTimeLimit'] = 300;
改成 $cfg['ExecTimeLimit'] = 3000;
推荐阅读
-
解决PHP mysql_query执行超时(Fatal error: Maximum execution time …)
-
php提示Maximum execution time of 30 seconds exceeded...错误的解决方法
-
PHP中超时提示Fatal error: Maximum execution time of 30 seconds
-
解决PHP mysql_query执行超时(Fatal error: Maximum execution time …)
-
php提示Maximum execution time of 30 seconds exceeded...错误的解决方法
-
Maximum execution time of 30 seconds exceeded_PHP教程
-
Fatal error: Maximum execution time of 30 错误
-
php Fatal error: Maximum execution time of 30 seconds exceeded in 问题的解决方案
-
Fatal error: Maximum execution time of 30 错误解决办法_PHP教程
-
Fatal error: Maximum execution time of 30 错误