0

我在 Ubuntu 10.04 服务器上安装了Zend Framework 1.12项目,以及PHP 5.5.3nginx 1.2.7 + php-fpm 。

我收到以下异常

Message: Unable to Connect to ssl://pftradingnet.com:443. Error #179898264: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?

Zend_Http_Client_Adapter_Socket->connect 功能。

我的配置命令是

'./configure' '--enable-opcache' '--prefix=/opt/php' '--with-apxs2=/usr/bin/apxs2' '--with-mysql=mysqlnd' '--with-mysqli=mysqlnd' '--with-pgsql=/usr' '--with-tidy=/usr' '--with-curl=/usr/bin' '--with-openssl-dir=/usr' '--with-zlib-dir=/usr' '--with-xpm-dir=/usr' '--with-pdo-pgsql=/usr' '--with-pdo-mysql=mysqlnd' '--with-xsl=/usr' '--with-ldap' '--with-xmlrpc' '--with-iconv-dir=/usr' '--with-snmp=/usr' '--enable-exif' '--enable-calendar' '--with-bz2=/usr' '--with-mcrypt=/usr' '--with-gd' '--with-jpeg-dir=/usr' '--with-png-dir=/usr' '--with-freetype-dir=/usr' '--enable-mbstring' '--enable-zip' '--with-pear' '--with-libdir=lib' '--with-config-file-path=/opt' '--enable-fpm' '--with-fpm-user=fpm' '--with-fpm-group=fpm' '--enable-debug'

它以前在php5.3+Apache2上运行良好,可能是什么原因导致错误?

4

1 回答 1

1

我的错误是我轻率地从这里cofigure复制粘贴了命令脚本。

我已经用--with-openssl而不是重新编译了 PHP --with-openssl-dir=/usr,它现在运行良好。

于 2013-09-06T17:24:26.440 回答