Page 1 of 1

can't checkout

Posted: Wed Feb 25, 2009 7:44 am
by compudds
I just installed ver. 1.1.7 and I cannot checkout. When I click on the checkout button it just refreshes the screen and nothing happens. Any clues?????

Re: can't checkout

Posted: Wed Feb 25, 2009 8:44 am
by liquidpele
I got an error when I tried to check out with 1.1.7... 1.1.8 fixed that.. try upgrading.

Re: can't checkout

Posted: Wed Feb 25, 2009 10:39 am
by compudds
upgraded to 1.1.8 and still not able to checkout?????

Re: can't checkout

Posted: Wed Feb 25, 2009 10:43 am
by liquidpele
weird... link?

Re: can't checkout

Posted: Wed Feb 25, 2009 10:49 am
by compudds

Re: can't checkout

Posted: Wed Feb 25, 2009 11:20 am
by liquidpele
Very weird... I didn't go too much into dept, but when you click it it will load this url:

http://www.bettersearchllc.com/store/in ... t/shipping

Which then redirects you back to the cart....

In catalog/controller/checkout/shipping.php, it will redirect you back to cart with the following:

Code: Select all

        if ((!$this->cart->hasProducts()) || ((!$this->cart->hasStock()) && (!$this->config->get('config_stock_checkout')))) {
                        $this->redirect($this->url->https('checkout/cart'));
        }
Looking at that... I see the "config_stock_checkout" - that is the config that allows users to checkout if the item is not in stock or not... then I noticed the red *** next to the item name. Your layout isn't showing the "some items are not in stock" message you would normally get. You can't checkout because it's not in stock (you have a quantity of zero) and you're layout doesn't show the error.

Re: can't checkout

Posted: Wed Feb 25, 2009 11:34 am
by compudds
Good call, thanks.