Magento的未捕获的SOAPFault例外:[0]无法在服务器上加载SOAP扩展在/ opt /

2019-10-17 16:05发布

我这么失去了现在。 我试图使用SOAP客户端,我得到以下错误

Uncaught SoapFault exception: [0] Unable to load Soap extension on the server in /opt/local/apache2/htdocs/code/import.php

import.php内

import.php

$client = new SoapClient('http://mymagentowebsite.com/api/soap/?wsdl');
$session = $client->login('api_master', 'api123');

当我到我的phpinfo,我能看到我的启用SOAP客户端

我使用的MacPorts,我也装肥皂端口扩展以及

下面是我在我的php.ini发现

extension=php_soap.dll
[soap]
; Enables or disables WSDL caching feature.
; http://php.net/soap.wsdl-cache-enabled
soap.wsdl_cache_enabled=1

; Sets the directory name where SOAP extension will put cache files.
; http://php.net/soap.wsdl-cache-dir
soap.wsdl_cache_dir="/tmp"

; (time to live) Sets the number of second while cached file will be used
; instead of original one.
; http://php.net/soap.wsdl-cache-ttl
soap.wsdl_cache_ttl=86400

; Sets the size of the cache limit. (Max. number of WSDL files to cache)
soap.wsdl_cache_limit = 5

我究竟做错了什么 ?

Answer 1:

我已经想通了。 我的本地机器上已经安装了SOAP客户端和服务器的扩展,但在服务器我打电话到没有。 我不得不去到远程服务器,并安装了SOAP扩展。 我从以下我的源代码。

我很困惑,因为我认为错误是指我的本地机器,但它指的是我的远程计算机。

PHP SOAP致命错误消息



文章来源: Magento Uncaught SoapFault exception: [0] Unable to load Soap extension on the server in /opt/local/apache2/htdocs/code/