Rumah > Artikel > pembangunan bahagian belakang > php解析不了
PHP不能解析之判断故障
1、查看有没有加载php5_module(shared)模块
/usr/local/apache/bin/apachectl -M
2、在以下目录查看有没有加载libphp5.so模块
/usr/local/apache2/modules/
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 //编译加载所有模块
推荐教程:PHP视频教程
Atas ialah kandungan terperinci php解析不了. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!