您好,登錄后才能下訂單哦!
下載php:
#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
配置編譯參數:
[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
在這一步,阿銘遇到如下錯誤:
configure: error: xml2-config not found. Please check your libxml2 installation.
解決辦法是:
yum install -y libxml2-devel
還有錯誤:
configure: error: Cannot find OpenSSL's <evp.h>
解決辦法是:
yum install -y openssl openssl-devel
錯誤:
checking for BZip2 in default path... not found
configure: error: Please reinstall the BZip2 distribution
解決辦法:
yum install -y bzip2 bzip2-devel
錯誤:
configure: error: png.h not found.
解決辦法:
yum install -y libpng libpng-devel
錯誤:
configure: error: freetype.h not found.
解決辦法:
yum install -y freetype freetype-devel
錯誤:
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
因為centos6.x 默認的yum源沒有libmcrypt-devel 這個包,只能借助第三方yum源。
configure: error: jpeglib.h not found.
root@deb:~/software/php-5.4.5#
環境: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這些包的時候,再次執行./configure的時候,再次出錯。
然后,又yum一遍,提示出No package libjpeg-devel.x86_64,在yum庫中沒有找到這個包。
可以利用yum -y update命令更新yum庫,更新完成以后,可以再次yum install,如果這一步成功,皆大歡喜。
如果依舊不可以,使用下一種方法,利用yum search 包名(例libjpeg-devel.x86_64可以寫成libjpeg),可以搜出一些,可以找到相應其他的包
編譯:
[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
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。