php安装openssl 扩展
下载和使用的php相同版本的php源码包。解压后找打ext下面的openssl 文件夹
/etc/php/bin/phpize(phpize的路径根据各自安装有所不同)
(如果遇到Cannot find config.m4.
到openssl目录里面mv config.0m4 config.m4 在执行phpize)
./configure –with-php-config=/www/wdlinux/php/bin/php-config(php-config文件的路径)
make
make install
最后还需要把生成的bcmath.so文件加入到php.ini中 extesion=openssl.so(如果没有设定extesion_dir,可能要加上全路径,查看phpize执行后的生成的so文件的路径即可, 这里是:extension_dir=/www/wdlinux/php/lib/php/extensions/no-debug-zts- 20060613)
可能在make的时候,会遇到错误
错误:‘PHP_FE_END’未声明(不在函数内) —–{error: ‘PHP_FE_END’ undeclared here (not in a function)}
解决方法: 源代码有错误,进入php-5.3.18/ext/mcrypt目录
sed -i 's|PHP_FE_END|{NULL,NULL,NULL}|' ./*.c
sed -i 's|ZEND_MOD_END|{NULL,NULL,NULL}|' ./*.c
再重新make && make install
我编译后模块都在/usr/lib/php/modules,然后把php/ini文件的模块加载到/usr/lib/php/modules 这个下面。