不重新编译PHP为php增加openssl模块的方法_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > 不重新编译PHP为php增加openssl模块的方法

不重新编译PHP为php增加openssl模块的方法

 2011/12/16 9:09:27  logo32  http://logo32.iteye.com  我要评论(0)
  • 摘要:不重新编译PHP为php增加openssl模块的方法yum-yinstallopenssl/usr/local/bin/是php的安装目录切换到php安装目录的etx/openssl目录cd/usr/local/src/php-5.2.8/ext/openssl/usr/local/bin/phpizeCannotfindconfig.m4
  • 标签:方法 PHP 编译
不重新编译PHP为php增加openssl模块的方法

yum -y install openssl

/usr/local/bin/是php的安装目录
切换到php安装目录的etx/openssl目录
cd /usr/local/src/php-5.2.8/ext/openssl


/usr/local/bin/phpize


Cannot find config.m4.
Make sure that you run '/usr/local/bin/phpize' in the top level source directory of the module

查看openssl目录下有个config.w32和config0.m4,把config0.m4改名为config.m4。
mv config0.m4 config.m4

执行:


/usr/local/bin/phpize


编译:


./configure --with-openssl --with-php-config=/usr/local/bin/php-config
make;make install


提示成功后,在php.ini里加入extension = openssl.so
重启apache或php-fpm,完成.

发表评论
用户名: 匿名