Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help Site not working in IE


russalpcs

Recommended Posts

Hi again - A client emailed me to say the shopping cart doesn't work in IE, then another client emailed to say none of my categories worked.I have an install of OsCDark with these mods : SA postage & speed services,Alertpay as my off-site payment processor,Bank transfer payment, oscthumb,ppc pc builder,random pro,easy populate, server timezone fix and terms acceptance.All the latest versions of each Mod is installed as the site only went live 2 weeks ago when I started adding products.In ie you get an error as soon as you click on a category - this is after I forced cookie use in admin.There is no ssl certificate on the site, so ssl is set to false.Before forcing cookie use the error(http 400) came up when you add a product to the cart,but when you click back to previous webpage, the cart shows the item.Then when you click checkout it gives another http 400 error, and the address shows checkout_shipping.php is meant to load.How can I fix these errors.The site works fine with firefox.The site is at http://www.russalpc.co.za

Link to comment
Share on other sites

No I don't see anything like that - Which ie are you using - I am on IE8 but the shopping cart is not functioning - it just gives http400 errors when you add or remove an item, or when you click checkout.

Link to comment
Share on other sites

So How do I fix it - file from /public_html/includes/configure.php

 

<?php

define('HTTP_SERVER', 'http://www.russalpc.co.za/');

define('HTTPS_SERVER', 'http://www.russalpc.co.za/');

define('ENABLE_SSL', 'false'); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'www.russalpc.co.za');

define('HTTPS_COOKIE_DOMAIN', 'www.russalpc.co.za');

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '/');

define('DIR_WS_HTTP_CATALOG', '../');

define('DIR_WS_HTTPS_CATALOG', '../');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_INCLUDES', 'includes/');

define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');

define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');

define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

define('DIR_FS_CATALOG', '/home/xxxxx/public_html/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

define('DB_SERVER', 'mysqlx.webhost.com');

define('DB_SERVER_USERNAME', 'xxxxx');

define('DB_SERVER_PASSWORD', 'xxxxx');

define('DB_DATABASE', 'xxxxx');

define('USE_PCONNECT', 'false');

define('STORE_SESSIONS', 'mysql');

define('CONFIG_TIME_ZONE', '-8:00');

?>

Link to comment
Share on other sites

change this

define('HTTP_SERVER', 'http://www.russalpc.co.za/');
define('HTTPS_SERVER', 'http://www.russalpc.co.za/');

 

to this

define('HTTP_SERVER', 'http://www.russalpc.co.za');
define('HTTPS_SERVER', 'http://www.russalpc.co.za');

 

and this

define('DIR_WS_HTTP_CATALOG', '../');
define('DIR_WS_HTTPS_CATALOG', '../');

 

to this

define('DIR_WS_HTTP_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...