Linux+Apache1.3.12+PHP4.0RC1+GD+JPEG+PNG安装脚本
时间:2007-02-17 来源:PHP爱好者
Linux+Apache1.3.12+PHP4.0RC1+GD+JPEG+PNG安装脚本
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
关键词:PHP, LINUX
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#please first install jpeg and gd
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----where to download----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#http://www.apache.org/dist/apache_1.3.12.tar.gz
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#http://www.php.net/version4/downloads/php-4.0RC1.tar.gz
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----version variables----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
ver_apache=apache_1.3.12
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
ver_php=php-4.0RC1
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----src of modules----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
module_src_php=src/modules/php4/libphp4.a
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----php configuration in httpd.conf----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
httpd_conf_php="AddType application/x-httpd-php .php"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
httpd_conf_php_source="AddType application/x-httpd-php-source .phps"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----preinstalled library----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
jpeg=/usr/local/jpeg
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
gd=/usr/local
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----installation directories----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
apache=/usr/local/apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
php=/usr/local/php
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----how to test php----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
howto_test_php="how to test php? write a file named phpinfo.php in ${apache}/htdocs/ whose content is
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
after apache started,type http://localhost/phpinfo.php in browser,just search gd,if
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
you can find words like gd Version 1.6.2 or higher which supports PNG,php supports gd."
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----how to start or stop apache----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
howto_start_apache="how to start apache? type ${apache}/bin/apachectl start."
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
howto_stop_apache="how to stop apache? type ${apache}/bin/apachectl stop."
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----untar----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
tar xzvf ${ver_php}.tar.gz
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
tar xzvf ${ver_apache}.tar.gz
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----prepare to install----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd $ver_apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
./configure
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd ..
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----install php----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd $ver_php
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
./configure --prefix=$php --with-apache=../$ver_apache --with-config-file-path=$php --enable-track-vars
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
--with-gd=$gd --with-jpeg-dir=$jpeg
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
make
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
make install
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cp php.ini-dist $php/php.ini
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd ..
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----install apache----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd $ver_apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
./configure --prefix=$apache --activate-module=$module_src_php
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
make
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
make install
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd ..
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----free----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
rm -rf $ver_php
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
rm -rf $ver_apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----configuration infomation----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo "------------------------------------------------------------------------"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo "please make sure following lines exist in ${apache}/conf/httpd.conf:"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo " $httpd_conf_php"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo " $httpd_conf_php_source"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo ""
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo $howto_test_php
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo ""
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo $howto_start_apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo $howto_stop_apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
php爱好者站 http://www.phpfans.net 文章|教程|下载|源码|论坛.
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
关键词:PHP, LINUX
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#please first install jpeg and gd
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----where to download----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#http://www.apache.org/dist/apache_1.3.12.tar.gz
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#http://www.php.net/version4/downloads/php-4.0RC1.tar.gz
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----version variables----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
ver_apache=apache_1.3.12
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
ver_php=php-4.0RC1
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----src of modules----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
module_src_php=src/modules/php4/libphp4.a
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----php configuration in httpd.conf----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
httpd_conf_php="AddType application/x-httpd-php .php"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
httpd_conf_php_source="AddType application/x-httpd-php-source .phps"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----preinstalled library----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
jpeg=/usr/local/jpeg
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
gd=/usr/local
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----installation directories----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
apache=/usr/local/apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
php=/usr/local/php
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----how to test php----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
howto_test_php="how to test php? write a file named phpinfo.php in ${apache}/htdocs/ whose content is
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
after apache started,type http://localhost/phpinfo.php in browser,just search gd,if
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
you can find words like gd Version 1.6.2 or higher which supports PNG,php supports gd."
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----how to start or stop apache----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
howto_start_apache="how to start apache? type ${apache}/bin/apachectl start."
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
howto_stop_apache="how to stop apache? type ${apache}/bin/apachectl stop."
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----untar----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
tar xzvf ${ver_php}.tar.gz
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
tar xzvf ${ver_apache}.tar.gz
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----prepare to install----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd $ver_apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
./configure
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd ..
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----install php----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd $ver_php
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
./configure --prefix=$php --with-apache=../$ver_apache --with-config-file-path=$php --enable-track-vars
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
--with-gd=$gd --with-jpeg-dir=$jpeg
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
make
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
make install
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cp php.ini-dist $php/php.ini
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd ..
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----install apache----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd $ver_apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
./configure --prefix=$apache --activate-module=$module_src_php
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
make
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
make install
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
cd ..
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----free----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
rm -rf $ver_php
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
rm -rf $ver_apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
#----configuration infomation----
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo "------------------------------------------------------------------------"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo "please make sure following lines exist in ${apache}/conf/httpd.conf:"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo " $httpd_conf_php"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo " $httpd_conf_php_source"
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo ""
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo $howto_test_php
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo ""
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo $howto_start_apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
echo $howto_stop_apache
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
中国IT动力bTV5AeVnIrNvrTm6L9cDRsn5x
php爱好者站 http://www.phpfans.net 文章|教程|下载|源码|论坛.
相关阅读 更多 +
排行榜 更多 +

<img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />
飞行射击 下载
<img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />
飞行射击 下载
<img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />
飞行射击 下载- 4 <img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />下载73.78MB · 91℃
1970-01-01
- 5 <img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />下载43.7 MB · 91℃
1970-01-01
- 6 <img preview="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" width="32" height="32" src="http://pic.pdowncc.com/uploadimg/ico/2025/0523/1747993424374100.png" alt="弓箭勇者最新版" />下载110.69MB · 93℃
1970-01-01