Php 获取SOAP客户端的http头时出错

Php 获取SOAP客户端的http头时出错,php,apache,soap,Php,Apache,Soap,我使用SOAP客户端在Magento(PHP)中下单,并在访问该Web服务时获取http头时出错 当我重新启动httpd时,错误就会消失,我可以一次又一次地下订单 我尝试的 默认\u套接字\u超时:120 SOAP客户端的代码片段 $cli = new SoapClient($api_url_v2, array( 'trace' =>true,

我使用SOAP客户端在Magento(PHP)中下单,并在访问该Web服务时获取http头时出错

当我重新启动httpd时,错误就会消失,我可以一次又一次地下订单

我尝试的

默认\u套接字\u超时:120

SOAP客户端的代码片段

$cli = new SoapClient($api_url_v2,
                           array(
                                'trace' =>true,
                                'connection_timeout' => 500000,
                                'keep_alive' => false,
                            )
 );
检查了httpd日志,发现如下内容

[Mon Oct 17 01:50:24 2016] [error] [client 127.0.0.1] client denied by server configuration: /var/www/html/store/app/etc/local.xml
[Mon Oct 17 01:53:53 2016] [notice] child pid 28113 exit signal Segmentation fault (11)
[Mon Oct 17 01:57:52 2016] [notice] child pid 29400 exit signal Segmentation fault (11)
[Mon Oct 17 02:01:14 2016] [notice] child pid 29401 exit signal Segmentation fault (11)
[Mon Oct 17 02:02:50 2016] [notice] child pid 29398 exit signal Segmentation fault (11)
[Mon Oct 17 02:05:38 2016] [error] [client 127.0.0.1] client denied by server configuration: /var/www/html/store/app/etc/local.xml
[Mon Oct 17 02:06:40 2016] [notice] child pid 28180 exit signal Segmentation fault (11)
请让我知道,如果有任何其他信息,我可以提供跟踪这一点


SOAP trace没有为我显示任何内容。仅此web服务存在此问题,我的soap客户端与其他客户端配合良好。

尝试编辑php.ini文件
soap.wsdl\u cache\u enabled=1
并将其更改为
soap.wsdl\u cache\u enabled=0
尝试编辑php.ini文件
soap.wsdl\u cache\u enabled=1
并将其更改为
soap.wsdl\u cache\u enabled=0