记一次:End of script output before headers: index.php 错误排查解决经历 Apache500,日志:End of script output before headers: xxx.php
解决方法
Apache 配置文件 httpd.conf 中增加如下配置,重启 Apache 服务基本可解决
<IfModule fcgid_module>FcgidIOTimeout 1200FcgidConnectTimeout 1200FcgidBusyScanInterval 1200FcgidBusyTimeout 1200FcgidErrorScanInterval 1200FcgidIdleScanInterval 1200FcgidIdleTimeout 1200FcgidProcessLifeTime 3600FcgidZombieScanInterval 1200</IfModule>
