Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Weird Problem


racerxfactor

Recommended Posts

Posted

I've put up the commerce script and it shows up fine on firefox but when I look at the same site in IE none of the images show. Any suggestions or answers on why this might be?

 

When I say no images, I mean nothing..... not even the images for the products or the images that come stock with the script

Posted
I've put up the commerce script and it shows up fine on firefox but when I look at the same site in IE none of the images show. Any suggestions or answers on why this might be?

 

When I say no images, I mean nothing..... not even the images for the products or the images that come stock with the script

 

 

haven't got them switched off in ie in tools>options>advanced?

Posted
haven't got them switched off in ie in tools>options>advanced?

 

 

Do you mean in IE? Huh?! If you're talking about IE, everything thing in it is left at default.

Posted

Common problem. The server is misconfigured and telling the browser that an ssl connection exists when there is none.

 

Set these lines in includes/configure.php exactly the same for http and https

 

define('HTTP_SERVER', ''); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN', '');

define('HTTPS_COOKIE_DOMAIN', '');

define('HTTP_COOKIE_PATH', '');

define('HTTPS_COOKIE_PATH', '');

define('DIR_WS_HTTP_CATALOG', '');

define('DIR_WS_HTTPS_CATALOG', '');

 

ie:

 

(assuming you're using the catalog folder)

 

define('HTTP_SERVER', 'http://yourdomain.com'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'http://yourdomain.com'); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN', 'yourdomain.com');

define('HTTPS_COOKIE_DOMAIN', 'yourdomain.com');

define('HTTP_COOKIE_PATH', '/catalog/');

define('HTTPS_COOKIE_PATH', '/catalog/');

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

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

 

The server techies will find and fix the problem sooner or later.

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Archived

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

×
×
  • Create New...