参考链接1:https://www.xp.cn/wenda/884.html

许家陵 2019-12-22 22:07:02 4楼

找到处理办法了,把这个加到httpd.conf里面,就可以解决了,但是以前的apache中从来没有加过这个啊

<IfModule mod_fcgid.c>
 FcgidProcessLifeTime 8200
 FcgidIOTimeout 8200
 FcgidConnectTimeout 4000
</IfModule>

参考链接2:https://www.cnblogs.com/cffdn/p/15033517.html
首先给Apache的配置文件httpd.conf添加几行

<IfModule mod_fcgid.c>
 FcgidProcessLifeTime 8200
 FcgidIOTimeout 8200
 FcgidConnectTimeout 4000
</IfModule>

说明,Apache默认的默认执行时间是40s,超过40s就会报错,这行的作用是让其超时时间走你设置的时间。
当然你做了上面这一步还是可能报错,如下
xdebug超时问题.png

需要将php.ini里的 max_execution_time = 300 改大一点或者直接 max_execution_time = 0,不做限制。