下載php:
師宗網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián),師宗網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為師宗成百上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的師宗做網(wǎng)站的公司定做!
#wget http://cn2.php.net/distributions/php-5.6.15.tar.gz
[rot@localhost httpd-2.2.16]# cd /usr/local/src
[root@localhost src]# wget http://am1.php.net/distributions/php-5.3.27.tar.gz
解壓:
[root@localhost src]# tar zxf php-5.3.27.tar.gz
配置編譯參數(shù):
[root@localhost src]# cd php-5.3.27
[root@localhost php-5.3.27]# ./configure \
--prefix=/usr/local/php \
--with-apxs2=/usr/local/apache2/bin/apxs \
--with-config-file-path=/usr/local/php/etc \
--with-MySQL=/usr/local/mysql \
--with-libxml-dir \
--with-gd \
--with-jpeg-dir \
--with-png-dir \
--with-freetype-dir \
--with-iconv-dir \
--with-zlib-dir \
--with-bz2 \
--with-openssl \
--with-mcrypt \
--enable-soap \
--enable-gd-native-ttf \
--enable-mbstring \
--enable-sockets \
--enable-exif \
--disable-ipv6
在這一步,阿銘遇到如下錯(cuò)誤:
configure: error: xml2-config not found. Please check your libxml2 installation.
解決辦法是:
yum install -y libxml2-devel
還有錯(cuò)誤:
configure: error: Cannot find OpenSSL's
解決辦法是:
yum install -y openssl openssl-devel
錯(cuò)誤:
checking for BZip2 in default path... not found
configure: error: Please reinstall the BZip2 distribution
解決辦法:
yum install -y bzip2 bzip2-devel
錯(cuò)誤:
configure: error: png.h not found.
解決辦法:
yum install -y libpng libpng-devel
錯(cuò)誤:
configure: error: freetype.h not found.
解決辦法:
yum install -y freetype freetype-devel
錯(cuò)誤:
configure: error: mcrypt.h not found. Please reinstall libmcrypt.
解決辦法:
rpm -ivh "http://www.aminglinux.com/bbs/data/p_w_upload/forum/month_1211/epel-release-6-7.noarch.rpm"
yum install -y libmcrypt-devel
因?yàn)閏entos6.x 默認(rèn)的yum源沒有l(wèi)ibmcrypt-devel 這個(gè)包,只能借助第三方y(tǒng)um源。
configure: error: jpeglib.h not found.
root@deb:~/software/php-5.4.5#
環(huán)境:debian6.0.5 php5.4.5
解決之道 安裝libjpeg
yum install libjpeg.x86_64 libpng.x86_64 freetype.x86_64 libjpeg-devel.x86_64 libpng-devel.x86_64 freetype-devel.x86_64 -y
在yum這些包的時(shí)候,再次執(zhí)行./configure的時(shí)候,再次出錯(cuò)。
然后,又yum一遍,提示出No package libjpeg-devel.x86_64,在yum庫中沒有找到這個(gè)包。
可以利用yum -y update命令更新yum庫,更新完成以后,可以再次yum install,如果這一步成功,皆大歡喜。
如果依舊不可以,使用下一種方法,利用yum search 包名(例libjpeg-devel.x86_64可以寫成libjpeg),可以搜出一些,可以找到相應(yīng)其他的包
編譯:
[root@localhost php-5.3.27]# make
安裝:
[root@localhost php-5.3.27]# make install
拷貝配置文件:
[root@localhost php-5.3.27]# cp php.ini-production /usr/local/php/etc/php.ini