赞
踩
下载PHP安装包,下载地址:http://www.php.net/downloads.php 下载tar.gz包,放在Linux的任意目录下,只在编译时指定安装到的目录。
tar -zxvf 包
cd 到目录
./configure --prefix=/usr/local/php
提示 configure: error: xml2-config not found. Please check your libxml2 installation.
需要安装:
yum install libxml2
yum install libxml2-devel -y
查看文件安装路径 find / -name xml2-config 【rpm -qa libxml2 可以查看安装的所有包路径】
然后 执行 ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs
make
发现提示 virtual memory exhausted: Cannot allocate memory 错误
需要重新./configure,为 ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --disable-fileinfo
make install
cp php.ini-production /usr/local/lib/php.ini
在AddType application处添加AddType application/x-httpd-php .php
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。