magento 1.9 onepage checkout卡在运输方式

问题描述:

我在安装了accessshop主题的Magento 1.9网站上遇到问题。我在检查产品时遇到了运送方法上的单页问题。我用萤火虫来分析ajax请求错误magento 1.9 onepage checkout卡在运输方式

POST 
XHR 
http://localhost/checkout/onepage/saveShippingMethod/ [HTTP/1.1 200 OK 477ms] 
POST 
XHR 
http://localhost/checkout/onepage/saveShippingMethod/ [HTTP/1.1 200 OK 473ms] 
POST 
XHR 
http://localhost/checkout/onepage/saveShippingMethod/ [HTTP/1.1 200 OK 486ms] 

有什么建议吗?

响应头

Cache-Controlno-store, no-cache, must-revalidateConnectionKeep-AliveContent-Length0Content-Typetext/html; charset=UTF-8DateSun, 06 Aug 2017 11:15:37 GMTExpiresThu, 19 Nov 1981 08:52:00 GMTKeep-Alivetimeout=5, max=100Pragmano-cacheServerApache/2.4.18 (Win32) OpenSSL/1.0.2e PHP/7.0.4Set-Cookiefrontend=n8402r130lcvu9nih5mc0m77m4; expires=Sun, 06-Aug-2017 12:15:38 GMT; Max-Age=3600; path=/; domain=35.154.241.195; HttpOnlyX-Content-Type-OptionsnosniffX-Frame-OptionsSAMEORIGINX-Powered-ByPHP/7.0.4X-XSS-Protection1; mode=block 

响应

+0

这意味着你有JS或错误的响应错误从服务器。你检查了答复吗? – Neodan

+0

我已添加响应标头 – Ananth

+0

您是否检查过system.log,exception.log和php错误日志? – Neodan

打开此文件/app/design/frontend/base/default/template/checkout/onepage/payment.phtml和替换下面的代码:

<fieldset> 
    <?php echo $this->getChildHtml('methods') ?> 
</fieldset> 
with (add id to fieldset) 

<fieldset id="checkout-payment-method-load"> 
    <?php echo $this->getChildHtml('methods') ?> 
</fieldset>