目錄
安裝php依賴的擴充套件:
編譯php:1 ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --enable-fpm --with-fpm-user=php-fpm --with-fpm-group=php-fpm --with-mysql=mysqlnd --with-mysql-sock=/tmp/mysql.sock --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enable-mbstring --enable-exif --disable-ipv6 --with-pear --with-curl --with-openssl --with-apxs2=/usr/local/apache/bin/apxs
注意:--with-apxs2=/usr/local/apache/bin/apxs 需要加上,不然的話apache/modules裡面就沒有libphp5.so,httpd.conf也不會加上loadmodule php5_module modules/libphp5.so這一行。
讓apache支援php:
開啟/usr/local/apache/conf/httpd.conf檔案,在最後面輸入以下**:
定位到directoryindex index.html ,修改為:
1 directoryindex index.php index.html
必須要注意的是/usr/local/apache/conf/httpd.conf中是否已經開啟了php擴充套件:
1 loadmodule php5_module modules/libphp5.so
測試安裝:
1 /usr/local/apache/htdocs/index.php
輸入以下**:
<?phpecho
phpinfo();
如果可以顯示phpinfo就表示成功了。
centos安裝php5 解除安裝php 安裝php7
這篇文章主要介紹了centos安裝php5 解除安裝php 安裝php7 有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下 首先安裝php5很簡單 yum install php 然後如果不想用php5的話那就解除安裝吧 注意只使用yum remove命令是行不通的 那我們先 1yum ...
PHP5下單獨編譯php模組
正好要安裝cacti的時候,突然發現,php的snmp支援模組沒有新增,也沒有靜態編譯到php中。突然想到作為模組當然應該是能單獨編譯。以增加zip解壓壓縮支援模組為例子。進入已經安裝了的php的對應原始碼目錄 例如我的php安裝在了 usr local php 5.3.0下,原始碼目錄是 usr ...
PHP5下單獨編譯php模組
正好要安裝cacti的時候,突然發現,php的snmp支援模組沒有新增,也沒有靜態編譯到php中。突然想到作為模組當然應該是能單獨編譯。以增加zip解壓壓縮支援模組為例子。進入已經安裝了的php的對應原始碼目錄 例如我的php安裝在了 usr local php 5.3.0下,原始碼目錄是 usr ...