1

自 3 天以来一直在努力解决这个问题。

当我在 Windows (WAMP) 中测试应用程序时,一切正常。但是当我在 Linux 中部署相同时,计费继续按钮不起作用。

当我输入详细信息后单击“继续”时,我在萤火虫中看到

http://www.domain.com/checkout/onepage/saveBilling/ 200 OK

并且它保持在同一页面上......

然后,当我签入 apache error_log 时,我看到以下错误:

[错误] 文件不存在:/home/docs/public_html/checkout,引用者:http: //www.domain.com/checkout/onepage/

我不知道它为什么要去 /home/docs/public_html/checkout ???

我是否处于正确的调试方式?你能帮我解决这个问题吗....谢谢和问候ecomse

4

2 回答 2

5

在帐单地址步骤中单击“继续”时,页面会向Mage_Checkout_OnepageController::saveBillingAction. 该函数应该将表单数据保存到报价单中并返回一个包含属性“goto_section”的JSON对象,即“goto_section”:“shipping_method”。ajax 请求的成功函数会选择这个属性并显示下一步。

我建议您使用 firebug 调试器检查是否POST /checkout/onepage/saveBilling返回带有goto_section元素的有效 JSON 对象。如果不是 - saveBilling 函数一定有问题。使用 Xdebug 并在该函数的开头设置一个断点,以检查一切是否正确处理。

另一个可能的问题来源是第三方扩展重写了结帐路由配置。你们店里有可能的嫌疑人吗?尝试停用它们并测试是否可以解决问题。

操作返回的有效 JSON 字符串示例saveBilling

{"goto_section":"shipping_method","update_section":{"name":"shipping-method","html":"    <dl class=\"sp-methods\">\r\n                <dt>Flat Rate<\/dt>\r\n        <dd>\r\n            <ul>\r\n                                            <li>\r\n                                                                   <span class=\"no-display\"><input name=\"shipping_method\" type=\"radio\" value=\"flatrate_flatrate\" id=\"s_method_flatrate_flatrate\" checked=\"checked\" \/><\/span>\r\n                                                <label for=\"s_method_flatrate_flatrate\">Fixed                                                                        <span class=\"price\">$5.00<\/span>                                                <\/label>\r\n                                   <\/li>\r\n                        <\/ul>\r\n        <\/dd>\r\n        <\/dl>\r\n<script type=\"text\/javascript\">\r\n\/\/<![CDATA[\r\n            var shippingCodePrice = {'flatrate_flatrate':5};\r\n    \r\n    $$('input[type=\"radio\"][name=\"shipping_method\"]').each(function(el){\r\n        Event.observe(el, 'click', function(){\r\n            if (el.checked == true) {\r\n                var getShippingCode = el.getValue();\r\n                                    var newPrice = shippingCodePrice[getShippingCode];\r\n                    if (!lastPrice) {\r\n                        lastPrice = newPrice;\r\n                        quoteBaseGrandTotal += newPrice;\r\n                    }\r\n                    if (newPrice != lastPrice) {\r\n                        quoteBaseGrandTotal += (newPrice-lastPrice);\r\n                        lastPrice = newPrice;\r\n                    }\r\n                                checkQuoteBaseGrandTotal = quoteBaseGrandTotal;\r\n                return false;\r\n            }\r\n       });\r\n    });\r\n\/\/]]>\r\n<\/script>\r\n"},"allow_sections":["shipping"],"duplicateBillingInfo":"true"}
于 2013-01-30T20:31:54.323 回答
0

我在本地工作时遇到了同样的问题。
启用了其他运输方式会导致此问题。
我已禁用 DHL、USPS、FedEx 和 UPS。
现在对我来说工作得很好。

我希望这有帮助。

于 2017-05-03T20:57:46.680 回答