在 CentOS 6.6 服务器上为 PHP 启用 SOAP

在 CentOS 6.6 服务器上为 PHP 启用 SOAP

我正在尝试在我的服务器上启用 SOAP。Soap 已安装,但未显示在 php_info 中。

PHP 版本 5.4.39

系统信息:Linux ip-xxx-xxx-xxx-xxx.secureserver.net 2.6.32-042stab106.4 #1 SMP Fri Mar 27 15:19:28 MSK 2015 x86_64

配置命令:

 './configure' '--disable-fileinfo' '--enable-bcmath' '--enable-calendar' '--enable-ftp' '--enable-gd-native-ttf' '--enable-libxml' '--enable-pdo=shared' '--enable-sockets' '--prefix=/usr/local' '--with-apxs2=/usr/local/apache/bin/apxs' '--with-curl=/opt/curlssl/' '--with-freetype-dir=/usr' '--with-gd' '--with-imap=/opt/php_with_imap_client/' '--with-imap-ssl=/usr' '--with-jpeg-dir=/usr' '--with-kerberos' '--with-libdir=lib64' '--with-libxml-dir=/opt/xml2/' '--with-mcrypt=/opt/libmcrypt/' '--with-mysql=/usr' '--with-mysql-sock=/var/lib/mysql/mysql.sock' '--with-openssl=/usr' '--with-openssl-dir=/usr' '--with-pcre-regex=/opt/pcre' '--with-pdo-mysql=shared' '--with-pdo-sqlite=shared' '--with-pic' '--with-png-dir=/usr' '--with-xpm-dir=/usr' '--with-zlib' '--with-zlib-dir=/usr' 

加载的配置文件:/usr/local/lib/php.ini

其中包含:[肥皂]

;extension=soap.so
; Enable soap extension module
extension="/usr/lib64/php/modules/soap.so"

我不确定还有哪些信息有用,但如果有任何帮助我将非常感激。

答案1

php-soap在 EPEL 中,因此我就不用费心去编译它了。

像这样安装:

yum install epel-release
yum makecache
yum install php-soap

答案2

从配置命令来看,您没有使用 SOAP 配置进行编译。请尝试通过添加以下选项来编译您的 PHP:

--enable-soap=shared

因此,编译的完整命令应更改为:

'./configure' '--disable-fileinfo' '--enable-bcmath' '--enable-calendar' '--enable-ftp' '--enable-gd-native-ttf' '--enable-libxml' '--enable-pdo=shared' '--enable-sockets' '--prefix=/usr/local' '--with-apxs2=/usr/local/apache/bin/apxs' '--with-curl=/opt/curlssl/' '--with-freetype-dir=/usr' '--with-gd' '--with-imap=/opt/php_with_imap_client/' '--with-imap-ssl=/usr' '--with-jpeg-dir=/usr' '--with-kerberos' '--with-libdir=lib64' '--with-libxml-dir=/opt/xml2/' '--with-mcrypt=/opt/libmcrypt/' '--with-mysql=/usr' '--with-mysql-sock=/var/lib/mysql/mysql.sock' '--with-openssl=/usr' '--with-openssl-dir=/usr' '--with-pcre-regex=/opt/pcre' '--with-pdo-mysql=shared' '--with-pdo-sqlite=shared' '--with-pic' '--with-png-dir=/usr' '--with-xpm-dir=/usr' '--with-zlib' '--with-zlib-dir=/usr'--enable-soap=shared

然后,通过以下方式复制已编译的 SOAP 模块:

cp modules/soap.so /usr/lib64/php/modules

使用以下命令重新启动 Apache Web 服务器:

/etc/init.d/httpd restart

然后从 phpinfo() 页面检查 SOAP 扩展是否启用。

答案3

尝试使用以下命令进行安装。

yum install php54-php-soap

相关内容