Madinson Posted May 12, 2003 Share Posted May 12, 2003 osCommerce 2.2 Milestone 1: .... is there someone having the same problem? My shop stops at checkout_shipping.php. If I click on continue...nothing happens...because there is no action placed for the button (>>created sourcecode): <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td width="10"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="1"></td> <td class="main"><b>Fortsetzung des Bestellvorganges</b><br>zur Auswahl der gewünschten Zahlungsweise.</td> <td class="main" align="right"><input type="image" src="includes/languages/german/images/buttons/button_continue.gif" border="0" alt="Weiter" title=" Weiter "></td> <td width="10"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="1"></td> </tr> </table> ...could someone help me...and tell me where the problem could be? just create...and sell..sell...sell..... Link to comment Share on other sites More sharing options...
vekke Posted May 12, 2003 Share Posted May 12, 2003 I had problems with a different language becouse there was a languagefile missing. So check that you have excactly same files in the languages -folders. I got only a blank page when clicking to checkout_process Dont know if its that but is worth checking. Link to comment Share on other sites More sharing options...
Madinson Posted May 13, 2003 Author Share Posted May 13, 2003 hm...I need a tip anyway. The Language-files are all there. Maybe someone could try to buy something....always if I want to go on a step after checkout_shipping.php it seems as the site reloads. Do I have problems with the rights/CHMOD on my server? http://www.bikesyndikat.de/catalog/default.php thanx anyway....have a try just create...and sell..sell...sell..... Link to comment Share on other sites More sharing options...
Guest Posted May 14, 2003 Share Posted May 14, 2003 I have just noticed that I have what seems like exactly the same problem as you, regarding my store no being able to 'continue' past /catalog/checkout_shipping.php . My store was working yesterday and last took an order at 8:30. I have also have another store of the same snap shot that works fine, but is not in use yet. I would therefore presume that it must be something that is caused by the orders I have taken. How many orders have you had so far on your store? other than that would be possible there is a crack someone could apply to cause a problem? any ideas of things to try are gratefully received. Thanks Link to comment Share on other sites More sharing options...
Daibheid Posted May 14, 2003 Share Posted May 14, 2003 Since you all brought it up... I have this EXACT same problem but with a slight variation. When you go to checkout the least expensive shipping option for UPS has no text: If you select it and hit "Continue" you get this screen: You cannot go past it. My checkout works FINE with all other shipping options. Help? D. Link to comment Share on other sites More sharing options...
Guest Posted May 14, 2003 Share Posted May 14, 2003 i thought it may have somehting to with were sessions are stored. the line in question then would be at /catalog/includes/configure.php ie define('STORE_SESSIONS', '') which was set to '' and not 'mysql' but it looks from my mySQL admin that sessions where being held there anyway, could this have something to do with it. anyone know more about how oscommerce uses sessions and whether this could be the cause? Link to comment Share on other sites More sharing options...
Guest Posted May 14, 2003 Share Posted May 14, 2003 right i'm now leaning towards that my problem may have been caused by changes in shipping. this is my thinking there seems to be 3 redirects to checkout_payment.php from /catalog/checkout_shipping.php one of these has the if statement if ($order->content_type == 'virtual') if any one could explain to me what test is being done here it would help me to eliminate whether this part may be at fault. the other links to the page I'd like to go to are in // process the selected shipping method if ( isset($HTTP_POST_VARS['action']) && ($HTTP_POST_VARS['action'] == 'process') ) { if (!tep_session_is_registered('comments')) tep_session_register('comments'); if (tep_not_null($HTTP_POST_VARS['comments_added'])) { $comments = tep_db_prepare_input($HTTP_POST_VARS['comments']); } if (!tep_session_is_registered('shipping')) tep_session_register('shipping'); if ( (tep_count_shipping_modules() > 0) || ($free_shipping == true) ) { if ( (isset($HTTP_POST_VARS['shipping'])) && (strpos($HTTP_POST_VARS['shipping'], '_')) ) { $shipping = $HTTP_POST_VARS['shipping']; list($module, $method) = explode('_', $shipping); if ( is_object($$module) || ($shipping == 'free_free') ) { if ($shipping == 'free_free') { $quote[0]['methods'][0]['title'] = FREE_SHIPPING_TITLE; $quote[0]['methods'][0]['cost'] = '0'; } else { $quote = $shipping_modules->quote($method, $module); } if (isset($quote['error'])) { tep_session_unregister('shipping'); } else { if ( (isset($quote[0]['methods'][0]['title'])) && (isset($quote[0]['methods'][0]['cost'])) ) { $shipping = array('id' => $shipping, 'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . ' (' . $quote[0]['methods'][0]['title'] . ')'), 'cost' => $quote[0]['methods'][0]['cost']); // HERE IS A LINK OUT TO THE FILE I WANT TO GO tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL')); } } } else { tep_session_unregister('shipping'); } } } else { $shipping = false; // HERE IS THE OTHER LINK OUT TO THE FILE I WANT TO GO tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL')); } } i will now try and undo changes made in last 2 days to shipping. I thought i would post this at this time as I'm off for a couple of hours and thought others on this string might like to know if I've had any progress. Link to comment Share on other sites More sharing options...
Guest Posted May 14, 2003 Share Posted May 14, 2003 lol :oops: one of the administrators at toerags set shipping to false !!! always something simple eh! Link to comment Share on other sites More sharing options...
Madinson Posted May 15, 2003 Author Share Posted May 15, 2003 Hi guys::::: I think.....this could be the solution. I've been in the adminarea....but please tell me where to change false to true........ just create...and sell..sell...sell..... Link to comment Share on other sites More sharing options...
Guest Posted May 17, 2003 Share Posted May 17, 2003 go to 'modules' in the admin area -> 'shipping' -> then click on the module(s) you are using -> then you get 'Enable Flat Shipping' choice ;) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.