解决php服务器返回500错误,500 Internal Server Error (mod_fcgid: read data timeout in 31 seconds)

apache错误日志里看到mod_fcgid: read data timeout in 31 seconds,那么八成是php执行时间太短导致的,我们通常会加大php参数max_execution_time=90或者0,同时查看apache error 日志,如果错误提示为Could not reliably determine the server's fully qualified domain name, using 192.168.1.100 for ServerName 则进入apache安装目录下,编辑配置文件httpd.conf
将httpd.conf文件中的一行:
# ServerName www.example.com:80 前的注释#去掉。
修改为:
ServerName localhost:80

你可能感兴趣的:(apache,PHP,server,服务器)