Fatal error: Maximum execution time of 30 错误
程序员文章站
2022-05-17 07:58:46
...
在程序开发中出现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为无限制,把它设置成需要的值就可以了,如果设置成0的话,就是永不过期。
phpmyadmin出现Fatal error: Maximum execution time of 300,具体位置可能不一样,我的在 mylocalhostphpMyAdminlibraries下,找到:$cfg['ExecTimeLimit'] = 300;改成 $cfg['ExecTimeLimit'] = 3000;
文章网址:
随意转载^^但请附上教程地址。
推荐阅读
-
解决PHP mysql_query执行超时(Fatal error: Maximum execution time …)
-
Maximum execution time of 30 seconds exceeded解决办法【转】
-
php提示Maximum execution time of 30 seconds exceeded...错误的解决方法
-
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...错误的解决方法
-
解决PHP mysql_query执行超时(Fatal error: Maximum execution t_PHP
-
Maximum execution time of 30 seconds exceeded_PHP教程
-
Fatal error: Maximum execution time of 30 错误