我们有一个1.6 Magento网站发送“付款交易失败”电子邮件。服务器抛出错误“无法读取响应或响应为空”。我们正在使用Authorize.net支付网关。它工作得很好,并没有对网站进行任何更改。可能导致此错误的原因是什么?
答案 0 :(得分: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');
}