共计 1436 个字符,预计需要花费 4 分钟才能阅读完成。
PHP 不能解析之判断故障
1. /usr/local/apache/bin/apachectl -M // 查看有没有加载 php5_module(shared) 模块;
2. 在 /usr/local/apache2/modules/ 目录下,查看有没有加载 libphp5.so 模块;
3. 复查编译的配置文件有否有误:/usr/local/apache2/conf/httpd.conf
修改 apache 的配置文件 httpd.conf
vim /usr/local/apache2/conf/httpd.conf
在 httpd.conf 中找到:“AddType application/x-gzip .gz .tgz”在该行下面添加
“AddType application/x-httpd-php .php”
再找继续找到:“DirectoryIndex index.html”,把此行修改成
“DirectoryIndex index.html index.htm index.php”
再找到:“#ServerName www.example.com:80”把此行修改成
“ServerName localhost:80”保存后退
4. 使用命令查看主配置文件是否有误:/usr/local/apache2/bin/apachectl -t
5. 在编译安装 apache 时,建议加上两个参数(以后用到就不需要再编译):
–enable-modes-shared=most // 编译加载最多的模块
–enalbe-modes-shared=all // 编译加载所有模块
总之出现故障后,先要判断问题的原因,这样才有办法应对。
———————————— 分割线 ————————————
CentOS 6.5 系统安装配置 LAMP(Apache+PHP5+MySQL) 服务器环境 http://www.linuxidc.com/Linux/2014-12/111030.htm
Ubuntu 14.04 配置 LAMP+phpMyAdmin PHP(5.5.9) 开发环境 http://www.linuxidc.com/Linux/2014-10/107924.htm
Windows 7 下硬盘安装 Ubuntu 14.10 图文教程 http://www.linuxidc.com/Linux/2014-10/108430.htm
U 盘安装 Ubuntu 14.10 http://www.linuxidc.com/Linux/2014-10/108402.htm
Ubuntu 14.10 正式发布下载 http://www.linuxidc.com/Linux/2014-10/108363.htm
Ubuntu 14.04 LTS 如何升级到 Ubuntu 14.10 http://www.linuxidc.com/Linux/2014-10/108381.htm
Ubuntu 14.10 下安装 LAMP 服务图文详解 http://www.linuxidc.com/Linux/2014-12/110082.htm
———————————— 分割线 ————————————
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2015-03/115158.htm