1

我们有一个 1.6 Magento 网站正在发送“付款交易失败”电子邮件。服务器抛出错误“无法读取响应或响应为空”。我们正在使用 Authorize.net 支付网关。它工作得很好,网站没有任何变化。什么可能导致此错误?

4

1 回答 1

1

这个错误信息,异常,在Zend_Http_Client的第993行附近抛出 如果你看一下代码,这意味着无法读取响应,可能是因为超时、网络故障或类似的原因。

这是代码片段

$response = $this->adapter->read();
if (! $response) {
    /** @see Zend_Http_Client_Exception */
    #require_once 'Zend/Http/Client/Exception.php';
    throw new Zend_Http_Client_Exception('Unable to read response, or response is empty');
}
于 2013-01-30T11:01:22.117 回答