linux 不重新編譯PHP 增加擴充套件

2021-06-25 17:21:07 字數 585 閱讀 3134

**舉例增加openssl擴充套件**

#下面是php的安裝目錄  

/usr/local/php5/bin/  

#切換到php安裝目錄的 etx/openssl目錄  

cd /php-5.3.8p/ext/openssl  

#檢視openssl目錄下有個config0.m4,把config0.m4改名為config.m4。  

cp config0.m4 config.m4  

#依次執行:  

/usr/local/php5/bin/phpize  

./configure –with-openssl –with-php-config=/usr/local/php5/bin/php-config  

make && make install  

#然後找到php.ini所在位置 開啟 extension_dir(如果沒有則自行新增), 同時新增 extension = "openssl.so"   

#重啟伺服器 即可  

#openssl 檢視方法:  

/usr/local/php5/bin/php -i |grep openssl 

linux不重新編譯php增加openssl擴充套件

php 下面是php的安裝目錄 usr local php5.3.8 bin 切換到php安裝目錄的 etx openssl目錄 cd php 5.3.8 ext openssl 檢視openssl目錄下有個config0.m4,把config0.m4改名為config.m4。cp config0....

不重新編譯PHP給php增加openssl模組記錄

引用 yum y install openssl usr local bin 是php的安裝目錄 切換到php安裝目錄的etx openssl目錄 cd root soft php 5.2.8 ext openssl 引用 usr local bin phpize cannot find confi...

不重新編譯php, 擴充套件gd庫

1.準備 wget wget wget wget mv download?source files freetype.tar.bz2 2.安裝 freetype tar jxvf freetype.tar.bz2 cd freetype 2.4.10 configure prefix usr loc...