经典的phpforwin32安装
时间:2007-02-17 来源:PHP爱好者
介绍一种经典的“apache+php3+mysql”的安装方法:
此方法是将php3编译成apache的一个模块(在此之前要先安装mysql)。
gunzip apache_1.3.x.tar.gz
tar xvf apache_1.3.x.tar
gunzip php-3.0.x.tar.gz
tar xvf php-3.0.x.tar
cd apache_1.3.x
./configure --prefix=/your_path
cd ../php-3.0.x
./configure --with-mysql --with-apache=../apache_1.3.x --enable-tr
ack-vars
make
make install
cd ../apache_1.3.x
./configure --prefix=/your_path --activate-module=src/modules/php3
/libphp3.a
make
make install
cd ../php-3.0.x
cp php3.ini-dist /usr/local/lib/php3.ini
编辑httpd.conf文件,去掉"#AddType application/x-httpd-php3 .php3"这句前
的"#"。
Over!!!
非常全面的一个php技术网站,php 爱好者站 http://www.phpfans.net 有相当丰富的文章和源代码.
此方法是将php3编译成apache的一个模块(在此之前要先安装mysql)。
gunzip apache_1.3.x.tar.gz
tar xvf apache_1.3.x.tar
gunzip php-3.0.x.tar.gz
tar xvf php-3.0.x.tar
cd apache_1.3.x
./configure --prefix=/your_path
cd ../php-3.0.x
./configure --with-mysql --with-apache=../apache_1.3.x --enable-tr
ack-vars
make
make install
cd ../apache_1.3.x
./configure --prefix=/your_path --activate-module=src/modules/php3
/libphp3.a
make
make install
cd ../php-3.0.x
cp php3.ini-dist /usr/local/lib/php3.ini
编辑httpd.conf文件,去掉"#AddType application/x-httpd-php3 .php3"这句前
的"#"。
Over!!!
非常全面的一个php技术网站,php 爱好者站 http://www.phpfans.net 有相当丰富的文章和源代码.
相关阅读 更多 +