PHP调用邮件类时报错
stream_socket_enable_crypto(): this stream does not support SSL/crypto
就是php.ini下openssl扩展默认情况下是没有打开:
wamp下:
;extension=php_openssl.dll
Lamp下:
sudo apt-get install openssl libcurl3-openssl-dev #需要先安装openssl
#进入php源码解压目录
cd /path/to/php/ext/openssl
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --with-openssl
make
sudo make install
安装成功后在php.ini中加上
extension=openssl.so
重启Apache|nginx后生效~!
相关文章:
,请先登录查看所有评论- CURL的配置使用 2015-05-26
- WAMP环境搭建之APACHE配置 2015-03-25
- Maximum execution time of 30 seconds exceeded故障解决 2015-03-20
- HTML实体的妙用 2015-03-03
- PHP代码中的一句话木马 2015-03-03
网友评论已关闭