***********安裝php*******************
創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),鄒平企業(yè)網(wǎng)站建設(shè),鄒平品牌網(wǎng)站建設(shè),網(wǎng)站定制,鄒平網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷(xiāo),網(wǎng)絡(luò)優(yōu)化,鄒平網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M(mǎn)足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專(zhuān)業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶(hù)成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
1,包:php-5.4.26.tar.bz2 xcache-3.0.3.tar.bz2 phpMyAdmin-4.0.5-all-languages.zip
依賴(lài)包安裝(X Software Development )
yum groupinstall "Desktop Platform Development" -y
2,如果想讓編譯的PHP支持mcrypt,還需要安裝
yum -y install libmcrypt-2.5.7.e15.i386.rpm
yum -y install libmcrypt-devel-2.5.7-5.e15.i386.rpm
安裝epel YUM源
rpm -Uvh http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
yum -y install libmcrypt-devel
3,解壓安裝php
./configure --prefix=/usr/local/php --with-MySQL=/usr/local/mysql --with-openssl --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-mbstring --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --enable-sockets --with-apxs2=/usr/local/apache/bin/apxs --with-mcrypt --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d --with-bz2 --enable-maintainer-zts
如果為了Apache支持works或event這兩個(gè)MPM,編譯時(shí)需要使用--enable-maintainer-zts
如果使用PHP5.3以上的版本,為了鏈接mysql數(shù)據(jù)庫(kù),可以指定mysqlnd,
這樣在本機(jī)就不需要安裝mysql或者mysql開(kāi)發(fā)包了,mysqlnd從php5.3開(kāi)始可以使用,
可以編譯時(shí)綁定他(而不是和具體的mysql客戶(hù)端庫(kù)綁定形成依賴(lài)),
但從php5.4開(kāi)始它就是默認(rèn)設(shè)備了
見(jiàn)招拆招:
configure: error: Cannot find OpenSSL's
安裝openssl-devel,bzip2-devel
如果php和mysql不在一臺(tái)服務(wù)器:
--with-mysql=mysqlnd --with-mysqli=mysqlnd --with-mysqli=mysqlnd
4,配置
cp php.ini-production /etc/php.ini
vi /etc/httpd24/httpd.conf
檢查有沒(méi)有LoadModule php5_modulemodules/libphp5.so
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
后加兩行:
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
修改一行,加 index.php
DirectoryIndex index.php index.html#次序很關(guān)鍵
重新載入httpd
rpm包安裝的話(huà)會(huì)在/etc/httpd/conf.d/下生成php.conf,編譯的話(huà)不會(huì)生成的,需要自己寫(xiě)
5,驗(yàn)證
phpinfo();
?>