Guest Posted November 19, 2008 Share Posted November 19, 2008 Hi, I'm stuck, my site wont let customers checkout, it gets stuck on the delivery information page and won't proceed to payment information. Any suggestions? Link to comment Share on other sites More sharing options...
Guest Posted November 20, 2009 Share Posted November 20, 2009 Did anyone have a fix for this.. Now my site decided to start doing the same thing... No changes made to the site.. Link to comment Share on other sites More sharing options...
♥FWR Media Posted November 20, 2009 Share Posted November 20, 2009 The question is "does it get stuck?" ( I doubt it ) .. or does it get to checkout payment then redirect back to shipping as certain parameters are not met ( more likely ). In the more likely scenario the following code is redirecting you back .. // if no shipping method has been selected, redirect the customer to the shipping method selection page if (!tep_session_is_registered('shipping')) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL')); } // avoid hack attempts during the checkout procedure by checking the internal cartID if (isset($cart->cartID) && tep_session_is_registered('cartID')) { if ($cart->cartID != $cartID) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL')); } } So you would need to run some debugging code to see where the failure is happening. Ultimate SEO Urls 5 PRO - Multi Language Modern, Powerful SEO Urls KissMT Dynamic SEO Meta & Canonical Header Tags KissER Error Handling and Debugging KissIT Image Thumbnailer Security Pro - Querystring protection against hackers ( a KISS contribution ) If you found my post useful please click the "Like This" button to the right. Please only PM me for paid work. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.