編譯php包:php-5.4.26.tar.bz2
十載的吉木乃網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開(kāi)發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。成都全網(wǎng)營(yíng)銷推廣的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整吉木乃建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無(wú)論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)公司從事“吉木乃網(wǎng)站設(shè)計(jì)”,“吉木乃網(wǎng)站推廣”以來(lái),每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
解壓php-5.4.26.tar.bz2后,進(jìn)入php解壓目錄:
./configure --prefix=/usr/local/php --enable-fpm --enable-debug --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --enable-mbstring --with-curl --with-MySQL=/usr/local/mysql/ --with-mysqli=/usr/local/mysql/bin/mysql_config --with-config-file-path=/usr/local/php/etc
運(yùn)行后遇到的問(wèn)題:
error 1
checking for xml2-config path...
configure: error: xml2-config not found. Please check your libxml2 installation.
(看提示就明白 是一個(gè)lib庫(kù)沒(méi)裝 先用 yum search 名字 看是否能搜到名字 ,找到名字后 把軟件包 開(kāi)發(fā)包裝上)
解決辦法
yum install libxml2-devel.x86_64 -y
error 2
checking for pkg-config... /usr/bin/pkg-config
configure: error: Cannot find OpenSSL's
這是ssl沒(méi)裝
解決辦法
yum install openssl-devel.x86_64 -y
error 3
checking for BZip2 in default path... not found
configure: error: Please reinstall the BZip2 distribution
這是bzip2軟件包沒(méi)有安裝
解決辦法
yum install bzip2-devel.x86_64 -y
error 4
configure: error: Please reinstall the libcurl distribution -
easy.h should be in
curl和curl庫(kù)文件沒(méi)有安裝
解決辦法
yum install libcurl.x86_64 libcurl-devel.x86_64 -y
error 5
checking whether to enable JIS-mapped Japanese font support in GD... no
checking for fabsf... yes
checking for floorf... yes
configure: error: jpeglib.h not found
GD庫(kù)沒(méi)有安裝
解決辦法
yum install libjpeg-devel.x86_64libpng-devel.x86_64 freetype-devel.x86_64 -y