网站建设

解决 “Maximum execution time of 300 seconds exceeded in …”问题

1.php.ini里max_execution_time = 30,原因是这个脚本执行时间太小了,增加一些,或者改成0不限制

2.wamp2.4wampappsphpmyadmin4.0.4libraries中的config.default.PHP

[plain] view plain copy

 print?

  1. /**  
  2. * maximum execution time in seconds (0 for no limit)  
  3. *  
  4. * @global integer $cfg[‘ExecTimeLimit’]  
  5. */  
  6. $cfg[‘ExecTimeLimit’] = 0;  

Related Articles

发表回复

Back to top button