rapt Posted October 31, 2008 Posted October 31, 2008 As the description says the images on my website www.ledbulbs.co.nz are not loading with internet explorer but they are working with firefox. I have not changed anything it just started to do it. The images are working fine in the admin side. I am using on the fly image thumbnailer and I have been through and updated it just incase but it did not fix the problem. Does anyone have any suggestions? or a fix? Here is my config file define('HTTP_SERVER', 'http://ledbulbs.co.nz'); // eg, [url="http://localhost"]http://localhost[/url] - should not be empty for productive servers define('HTTPS_SERVER', ''); // eg, [url="https://localhost"]https://localhost[/url] - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'kiwiwebhost.fanconi.net.nz'); define('HTTPS_COOKIE_DOMAIN', ''); 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/rapt/public_html/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'localhost'); If I right click a resized image from my site I get the following link it looks like it is not pointing to www.ledbulbs.co.nz because if you type that in after http:// it works. http:///product_thumb.php?img=images/1156base.jpg&w=100&h=74
germ Posted October 31, 2008 Posted October 31, 2008 Look at the HTML source. This is the problem: <base href=""> In your cofig file, try changing this: define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers to define('HTTPS_SERVER', 'http://ledbulbs.co.nz'); // eg, https://localhost - should not be empty for productive servers If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
Recommended Posts
Archived
This topic is now archived and is closed to further replies.