racerxfactor Posted March 28, 2006 Posted March 28, 2006 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
Flyer5 Posted March 28, 2006 Posted March 28, 2006 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?
racerxfactor Posted March 28, 2006 Author Posted March 28, 2006 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.
AlanR Posted March 29, 2006 Posted March 29, 2006 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)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.