php Maximum execution time of 30 seconds exceeded解决办法

今天在做上传附件的功能的时候,一直报Fatal error: Maximum execution time of 30 seconds exceeded in C:\WWW\index.php on line 56错误。
百度了一下,发现是php配置文件的问题,默认的最大执行时间不能超过30s,于是修改php.ini,将max_execution_time`=30改为300,结果发现还是不行,又改为3000,最后改为0(无限制)都还是不行;
最后发现同时也要改max_input_time,将max_execution_time和max_input_time都改为1000,问题解决。

你可能感兴趣的:(php)