views:

326

answers:

1

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/

+1  A: 

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.

pygorex1
im getting firebug now but, PHP MCrypt is this something i need to install or do i need to reinstall magento?
delboud
Installing the php mcrypt extension should take care of the error.
pygorex1
I have the site hosted and don't have access to the server, so i should have the server admin install PHP MCrypt and the error should go away... which fixes the checkout problem right?
delboud
Yes, that should fix the problem
pygorex1