linux php源碼包 安裝openssl 和curl 擴展

1. 安裝openssl
解壓php的源碼包
tar zxvf php-5.3.8.tar.gz 
cd soft/php-5.3.8/ext/openssl
 mv config0.m4 config.m4                            不然報錯:找不到config.m4
/opt/local/php-5.3.8/bin/phpize 
./configure --with-openssl --with-php-config=/opt/local/php-5.3.8/bin/php-config 
make
make test
make install


編輯php.ini文件增長下面的內容

[openssl]
        extension_dir="/opt/local/php-5.3.8/lib/php/extensions/no-debug-non-zts-20090626/"
        extension="openssl.so"

2.安裝curl 擴展
cd soft/php-5.3.8/ext/curl
 /opt/local/php-5.3.8/bin/phpize 
./configure --with-curl  --with-php-config=/opt/local/php-5.3.8/bin/php-config
make
make test
make install

編輯php.ini文件增長下面的內容

[curl]
        extension_dir="/opt/local/php-5.3.8/lib/php/extensions/no-debug-non-zts-20090626/"
        extension="curl.so"
相關文章
相關標籤/搜索