Heim >php教程 >php手册 >UNIX下的PHP环境配置

UNIX下的PHP环境配置

WBOY
WBOYOriginal
2016-06-13 09:49:50773Durchsuche

UNIX下的PHP环境配置
所需软件php-3.0.14-win32.zip    
php-3.0.14-win32.zip    
mysql-shareware-3.22.32-win.zip 
所有软件均安装在/export/home/guoj/下,也可在其他目录。
安装mysql
gzip -dc mysql-3.22.30.tar.gz | tar xvf-
cd mysql-3.22.30
./configure -prefix= /export/home/guoj/mysql
make
make install
scripts/mysql_install_db
cd../mysql/bin
bin/safe_mysqld &
安装php+apache
gzip -dc apache_1.3.11.tar.gz | tar xvf-
gzip -dc php-3.0.11.tar.gz | tar xvf-
cd apache_1.3.11
./configure -prefix= /export/home/guoj/www
cd ../php-3.0.11
./configure -with-apache= /export/home/guoj/apache_1.3.11
     -with-mysql= /export/home/guoj/mysql -enable-track-vars
make
make install
cd ../apache_1.3.11
./configure --prefix= /export/home/guoj/www
     --activate-module=src/modules/php3/libphp3.aP
make
make install
cd ../php-3.0.11
cd ../php3.ini-dist php3.ini
vi php3.ini
修改php3.ini
 doc_root=/export/home/guoj/www/htdocs/
 extension_dir=/export/home/guoj/php-3.0.11/
 extension=php3_mysql.dll
cp php3.ini/usr/local/lib/php3.ini
vi ../www/conf/httpd.conf
     加上以下几句:
 AddType application/x-httpd-php3 .php3
 
  Options FollowSymLinks
  AllowOverride None
 

../www/bin/apachectl start

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php文件缓存类实例整理Nächster Artikel:配置Apache2 + PHP5 + MYSQL5