Maximum execution time of 30 seconds exceeded

 

 

方法一,修改php.ini文件

max_execution_time = 30; Maximum execution time of each script, in seconds
把它设置成需要的值就可以了。如果设置成0的话,就是永不过期。
方法二,修改php执行文件
加上
<?
set_time_limit(0);
?>

相关文章:

  • 2021-09-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
  • 2021-12-20
  • 2021-12-13
猜你喜欢
  • 2022-12-23
  • 2021-05-17
  • 2021-07-16
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案