Magento 访客结帐不会进入送货信息

发布于 2024-08-21 04:34:58 字数 239 浏览 6 评论 0原文

由于某些奇怪的原因,当人们尝试使用访客结帐时,它只允许他们输入帐单信息,然后当它应该发送时......它只是循环回到第一个结帐页面......这个过程不断重复,

任何人都知道在哪里这可能是从哪里来的?

该网站是 a2iwheels.com/checkout/onepage/

For some odd reason when people try to use guest checkout it just allows them to enter billing information then when it supposed to go to shipping... it just loops back to the first checkout page... the the process keeps repeating

anyone know where this may be coming from?

the site is a2iwheels.com/checkout/onepage/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沧笙踏歌 2024-08-28 04:34:58

您的 Magento 安装不正确。根据此报告,您似乎缺少 PHP MCrypt 扩展:

http ://www.a2iwheels.com/report/?id=500049770619&s=default

以下是调试 Magento 问题时的一些提示:

第一:

通过取消注释/添加以下行到 Magento 索引来启用调试/开发模式.php 文件:

Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);

第二:

设置 Magento 异常日志:

  1. 在 Magento 管理中,转到“系统”->“配置”
  2. 在左栏中,单击“开发人员”(在“高级”下)
  3. 如果未展开,请单击“日志设置”
  4. 从“请
  5. 注意

,在 Magento 开始写入日志文件之前,您需要手动创建日志文件。

第三步

安装 FireBug 并用它来捕获 AJAX 错误 - 单页结帐本质上是一个复杂的 AJAX 页面。

Your Magento install is incorrect. According to this report it looks like you're missing the PHP MCrypt extension:

http://www.a2iwheels.com/report/?id=500049770619&s=default

Here's a few tips when debugging Magento problems:

First:

Enable debug/developer mode by uncommenting/adding the following lines to the Magento index.php file:

Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);

Second:

Setup the Magento exception log:

  1. In the Magento Admin, go to System->Configuration
  2. In the left column, click on Developer (under Advanced)
  3. If it’s not expanded, Click on Log Settings
  4. Select Yes from the “Enabled” drop down
  5. Click on Save Config

Note that you'll need to manually create the log files before Magento begins writing to them.

Third

Install FireBug and use it to catch AJAX errors - the single page checkout is essentially one complicated AJAX page.

ゝ偶尔ゞ 2024-08-28 04:34:58

转到 /app/design/frontend/base/default/template/checkout/onepage/ payment.phtml

并将以下代码(第 36 行)更改

<fieldset>
   <?php echo $this->getChildHtml('methods') ?>
</fieldset> 

为此

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

Go to /app/design/frontend/base/default/template/checkout/onepage/payment.phtml

and change the following code (line 36)

<fieldset>
   <?php echo $this->getChildHtml('methods') ?>
</fieldset> 

to this

<fieldset id="checkout-payment-method-load">
    <?php echo $this->getChildHtml('methods') ?>
</fieldset> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文