[摘要]tar xvf - cd apache_1.3.x ./configure --prefix=/www cd ../php-4.0.x ./configure --with-mysql --with...
tar xvf -
cd apache_1.3.x
./configure --prefix=/www
cd ../php-4.0.x
./configure --with-mysql --with-apache=../apache_1.3.x --enable-track-vars
make
make install
cd ../apache_1.3.x
./configure --prefix=/www --activate-module=src/modules/php4/libphp4.a
make
make install
cd ../php-4.0.x
cp php.ini-dist /usr/local/lib/php.ini
在 httpd.conf 或 srm.conf 加入
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
而 PHP 4.x 版中对 Apache 服务器加入了新的环境变量配置项。
php_value [PHP directive name] [value]
php_flag [PHP directive name] [On
关键词:PHP在linxu下的安装与设置