linux php5配置收藏

mandriva中配置php5真是麻烦,以下是最容易出错的地方.

由于php5需libxml2的支持, 所以先下载并安装libxml2
# cd /root/soft
# wget http://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/libxml2-2.6.19.tar.gz
# tar -zxf libxml2-2.6.19.tar.gz
# cd libxml2-2.6.19
# ./configure --prefix=/usr/local/libxml2
# make; make install

配置命令如下
[root@hun8 php-5.2.0]# ./configure --prefix=/usr/local/php --with-mysql-dir=/usr/local/mysql
--with-apxs2=/usr/local/apache2/bin/apxs --with-libxml-dir=/usr/local/libxml2
--with-zlib-dir=/usr/lib --mandir=/usr/share/man/ --enable-share=max --enable-module=most

如果是自己选择GZ包安装的MYSQL。这里要加路径。
加的方法为--with-mysql-dir=/user/local/mysql
切记不可写为:--with-mysql=/user/local/mysql

你可能感兴趣的:(PHP,mysql,linux)