开发者

Magento guest checkout won't make it to shipping info

开发者 https://www.devze.com 2022-12-20 03:06 出处:网络
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 che

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/


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.


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> 
0

精彩评论

暂无评论...
验证码 换一张
取 消