

steve_s
Members-
Content count
1,574 -
Joined
-
Last visited
-
Days Won
1
Everything posted by steve_s
-
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
-
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
-
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
-
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
-
insall your own ssl dont use shared ssl its not a good idea Steve
-
try removing that line Steve
-
have you run the sql on your stores database
-
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
-
just remove them lines or use 1.4 1.5 is for osc 2.3
-
Hi Felix 1 did you send it web experts that mail ? 2 no you dont have to install the coupon add on Steve
-
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
-
Hi, you need to move code from function process into function selection i beleive if no luck let me know Steve
-
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
-
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
-
Hi Felix, You have this added in checkout_proccess.php /* One Page Checkout - BEGIN */ if (ONEPAGE_CHECKOUT_ENABLED == 'True'){ require('includes/classes/onepage_checkout.php'); $onePageCheckout = new osC_onePageCheckout(); } /* One Page Checkout - END */ after the language include(DIR_WS_LANGUAGES . $language . '/' . FILENAME_CHECKOUT_PROCESS); Steve
-
no sort order can be the same or it wont work Steve
-
Hi just curious on this, can you change what php version your hosting site is using ie php5 or php4 change it to php4 and see what happens Steve
-
hi try this fix that was posted before in this forum If you get the pop up when hitting the continue button on checkout that says password doesn't match it is easy to check. Hit the refresh page button and then you can checkout. This will work. For some reason JS is not working. In checkout.php, find: if (updateTotals == true){ onePage.updateOrderTotals(); } This is around line 432. Add right after: javascript:location.reload(true); Steve
-
Hi Mark if you added any code for discount coupons in checkout_proccess.php you will have to add them to paypal ipn payment mod to Steve
-
the configure file should be set to read only after the install, set it to 666 if you have to, for site monitor to check then set them back immediately to read only Steve
-
hi use a file compare tool like winmerge and see what code you need to add to dm_categories.php Steve
-
you have a php error on that page, includes/application.top find the error reporting and add after it ini_set('display_errors', 1); ini_set('log_errors', 1); ini_set('error_log', dirname(__FILE__) . '/error_log.txt'); error_reporting(E_ALL); now any errors will be displayed in browser Steve
-
have you tried tried copying files on the one that works to the site that dont work ? Steve
-
Hi you can change the layout using the css i think there is a section explaining how to customise Steve
-
Hi in the one page checkout folder you will see a file called checkout.sts.php rename checkout.php to say checkout_old.php now rename checkout.sts.php to checkout.php and upload that file to your server Steve