kaz09 Posted April 6, 2007 Posted April 6, 2007 As the title suggests my site does not show frames or images when viewed through IE7. Have searched the forums and have a basic understanding that it could be a problem in my includes/configure.php or because I used the Basic Design Template contribution. Anyway, I am a bit lost and not sure what I am looking for or what needs to be fixed. If someone could point me in the right direction it would be greatly appreciated. Link below. www.babysoftlandings.com.au Thanks Karen
kirikintha Posted April 6, 2007 Posted April 6, 2007 yeah - you;ve got a configuration error somewhere - your site explodes off the main pages Nothing unreal exists
kaz09 Posted April 6, 2007 Author Posted April 6, 2007 so is that in the includes/configure.php? This is what is in there: <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.babysoftlandings.com.au'); // 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', 'www.babysoftlandings.com.au'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/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/babysoft/public_html/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
Guest Posted April 6, 2007 Posted April 6, 2007 As the title suggests my site does not show frames or images when viewed through IE7. Have searched the forums and have a basic understanding that it could be a problem in my includes/configure.php or because I used the Basic Design Template contribution. Anyway, I am a bit lost and not sure what I am looking for or what needs to be fixed. If someone could point me in the right direction it would be greatly appreciated. Link below. www.babysoftlandings.com.au Thanks Karen Can you make sure you specify dimensions for your images? Someone else was asking the same thing and I see the same problem from your html source. Don't expect the browser to figure it out automagically. http://www.oscommerce.com/forums/index.php?s=&...t&p=1055903
kaz09 Posted April 7, 2007 Author Posted April 7, 2007 OK - this is something I haven't learnt about yet, so while not expecting it to happen automagically, didn't know I had to do it. Do I change the image settings in Admin>Configuration>images?
Guest Posted April 7, 2007 Posted April 7, 2007 These osc settings are already taken care of from the tep_image function. However your logo or other hard-coded images may not. like this one: <td valign="center"><a href="http://www.babysoftlandings.com.au/catalog/index.php"><img src="images/BSL Banner2.gif" border="0" alt="Baby Soft Landings" title=" Baby Soft Landings "></a></td> There are no dimensions for the img tag. So change that, should be in your includes\header.php to specify the dimensions, see how the stock osc does it. <td valign="middle"><a href="http://demo.oscommerce.com/index.php"><img src="images/oscommerce.gif" border="0" alt="osCommerce" title=" osCommerce " width="204" height="50"></a></td> see if it works with ie7. If not it's BillyG's fault.
kirikintha Posted April 7, 2007 Posted April 7, 2007 to make you images automatically resize in proportion you make the width small image width 'x' (a number) and small image height set to 0 and calculate image size is set to true in configuration --> images and for you other prob in you url I see this http://www.babysoftlandings.com.au/catalog...ex.php/cPath/42 it should not be that it should be http://www.babysoftlandings.com.au/catalog...ex.php?cPath=42 Nothing unreal exists
kaz09 Posted April 7, 2007 Author Posted April 7, 2007 :blink: Mmm, ok and how did it get like that and how do I fix it? Man I am on a steep learning curve today!
Guest Posted April 7, 2007 Posted April 7, 2007 :blink: Mmm, ok and how did it get like that and how do I fix it? Man I am on a steep learning curve today! Which one? If you're talking about the urls there is a setting in your osc admin->Configuration->My Store->Use Search Engine safe urls. should be set to false. If you want some proper SEO urls check the contributions. But that's not related with the image settings.
kaz09 Posted April 7, 2007 Author Posted April 7, 2007 Sorry was referring to the url's but thank you for the reply because I did have it set to true and it appears to have fixed the problem by changing to false. SEO friendly URL's are on my to-do-list. Thank you everybody for your help.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.