Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

steve_s

Pioneers
  • Posts

    1,574
  • Joined

  • Last visited

  • Days Won

    1

steve_s last won the day on December 16 2009

steve_s had the most liked content!

Profile Information

Recent Profile Visitors

24,197 profile views

steve_s's Achievements

  1. Hi just in case no one found a solution i have heard IE9 does not like any javascaript before the head tag so placing in the <head></head> tags should work Worth a shot Steve
  2. Hi, I have noticed a bug in install instructions in catalog/admin/includes/application_top.php >>>>2 ) FIND; // initialize the message stack for output messages require(DIR_WS_CLASSES . 'message_stack.php'); >>>>>>>>REPLACE WITH: // override the admin message stack to use the store message stack if(false !== strpos($PHP_SELF, FILENAME_SPECIALS)) { require(DIR_FS_CATALOG . DIR_WS_CLASSES . 'boxes.php'); require(DIR_FS_CATALOG . DIR_WS_CLASSES . 'message_stack.php'); } else { // initialize the message stack for output messages require(DIR_WS_CLASSES . 'message_stack.php'); } it should be replace with // override the admin message stack to use the store message stack if(false !== strpos($PHP_SELF, FILENAME_SPECIALS_MAINTENANCE)) { require(DIR_FS_CATALOG . DIR_WS_CLASSES . 'boxes.php'); require(DIR_FS_CATALOG . DIR_WS_CLASSES . 'message_stack.php'); } else { // initialize the message stack for output messages require(DIR_WS_CLASSES . 'message_stack.php'); } Steve
  3. hi try this in catalog/includes/classes/onepage_checkout.php find /* Comment line below for oscommerce versions before MS2.2 RC2a */ $confirmation = $GLOBALS[$payment]->confirmation(); /* Uncomment line below for oscommerce versions before MS2.2 RC2a */ //$confirmation = $GLOBALS[$payment]->selection(); change it to /* Comment line below for oscommerce versions before MS2.2 RC2a */ //$confirmation = $GLOBALS[$payment]->confirmation(); /* Uncomment line below for oscommerce versions before MS2.2 RC2a */ $confirmation = $GLOBALS[$payment]->selection(); Steve
  4. Hi Martin, that should be there in catalog/includes/modules/order_total/shipping.php on 2.2 & 2,31 below is the whole block of that function it is in function process() { global $order, $currencies; if (MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING == 'true') { switch (MODULE_ORDER_TOTAL_SHIPPING_DESTINATION) { case 'national': if ($order->delivery['country_id'] == STORE_COUNTRY) $pass = true; break; case 'international': if ($order->delivery['country_id'] != STORE_COUNTRY) $pass = true; break; case 'both': $pass = true; break; default: $pass = false; break; } if ( ($pass == true) && ( ($order->info['total'] - $order->info['shipping_cost']) >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER) ) { $order->info['shipping_method'] = FREE_SHIPPING_TITLE; $order->info['total'] -= $order->info['shipping_cost']; $order->info['shipping_cost'] = 0; } } now you can compare and see where to add this in your file /* One Page Checkout - BEGIN */ if (ONEPAGE_CHECKOUT_ENABLED != 'True'){ if ( ($pass == true) && ( ($order->info['total'] - $order->info['shipping_cost']) >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER) ) { $order->info['shipping_method'] = FREE_SHIPPING_TITLE; $order->info['total'] -= $order->info['shipping_cost']; $order->info['shipping_cost'] = 0; } } /* One Page Checkout - END */ Have you made the changes to catalog/includes/classes/order.php? Steve
  5. insall your own ssl dont use shared ssl its not a good idea Steve
  6. have you run the sql on your stores database
  7. Hi Martin, Fisrt of what payment module are you using also check that payment module doesnt have its own process page like paypal standard/ipn has if it has modify according to the paypal in install guide Steve
  8. just remove them lines or use 1.4 1.5 is for osc 2.3
  9. Hi Felix 1 did you send it web experts that mail ? 2 no you dont have to install the coupon add on Steve
  10. Hi No you dont it works with all shipping and order total modules same as normal store does, might need some code added if you add any to any checkout page otherwise will work out of the box with them Steve
  11. Hi, you need to move code from function process into function selection i beleive if no luck let me know Steve
  12. Guest

    Also thx from me!

  13. Hi Andrew, i don't i would suggest use freelancer.com and find a java/php code to look at it, i have never used that payment module, wont be a costly fix Steve
  14. Hi Andrew, in includes/checkout any file with address in the name you will have to add width="xxpx" to the TD tags for IE use utf8 code for the euro sign use this to get the utf8 code http://www.atm.ox.ac.uk/user/iwi/charmap.html Steve
×
×
  • Create New...