jayf Posted December 11, 2004 Posted December 11, 2004 I've recently run into this problem and it's starting to drive me nuts. Go to my secure site here: https://www.aggrobikes.com . When you look in the top left hand corner, there is a yellow "Aggro" logo. The image is called 'aggrologo.gif'. If you go to the regular http site at http://www.aggrobikes.com , that image disappears, even though the header.php file is being called from the same place. Does anyone have a clue why this might be happening?? I'm at a loss. :'(
Guest Posted December 11, 2004 Posted December 11, 2004 It was there both places for me. Source was there for https and http... I've recently run into this problem and it's starting to drive me nuts. Go to my secure site here: https://www.aggrobikes.com . When you look in the top left hand corner, there is a yellow "Aggro" logo. The image is called 'aggrologo.gif'. If you go to the regular http site at http://www.aggrobikes.com , that image disappears, even though the header.php file is being called from the same place. Does anyone have a clue why this might be happening?? I'm at a loss. :'( <{POST_SNAPBACK}>
TB Posted December 11, 2004 Posted December 11, 2004 I've just checked out your site and the image file is appearing for me. Have you fixed the problem? If not, post the code from your header.php file and that'd give us more info to work with. Cheers, Tony "The price of success is perseverance. The price of failure comes much cheaper."
jayf Posted December 11, 2004 Author Posted December 11, 2004 Very bizarre... thanks for looking, guys! I wonder if this could be specific to my browser here at home? I'm using IE6. If I view source through the browser, https shows me the following (where the logo is): <table width="100%" border="0" cellspacing="0" cellpadding="0" height="46"> <tr> <td width="58%" align="left" valign="top" bgcolor="#000000" height="54"> <table width="303" border="0" cellspacing="0" cellpadding="0"> <tr><img src="images/aggrologo.gif"></td> </tr> </table> If I pull up the source for http (where I can't see the logo), I get this: <table width="100%" border="0" cellspacing="0" cellpadding="0" height="46"> <tr> <td width="58%" align="left" valign="top" bgcolor="#000000" height="54"> <table width="303" border="0" cellspacing="0" cellpadding="0"> <tr> </td> </tr> </table>
bobg7 Posted December 11, 2004 Posted December 11, 2004 Try clearing your browser cache and see if that clears it up for you. Installed Contributions: CCGV, Close Popup, Dynamic Meta Tags, Easy Populate, Froogle Data Feeder, Google Position, Infobox Header Entire Row, Live Support for OSC, PayPal Seal with CC images, Report_m Sales, Shop by Price Revised, SQL Updater, Who's Online Enhancement, Footer, GNA EP Assistant and still going.
TB Posted December 11, 2004 Posted December 11, 2004 If you post the source code for your header.php file, we'll have a much better chance of finding the problem. Also, try Bob's idea of clearing your browser cache as the logo is showing up fine for me. "The price of success is perseverance. The price of failure comes much cheaper."
jayf Posted December 11, 2004 Author Posted December 11, 2004 If you post the source code for your header.php file, we'll have a much better chance of finding the problem. Also, try Bob's idea of clearing your browser cache as the logo is showing up fine for me. <{POST_SNAPBACK}> The clearing the cache didn't do it, which just adds to the weirdness. Netscape and IE both produce the same anomaly on this machine. Here's my header code: <?php /* $Id: header.php,v 1.42 2003/06/10 18:20:38 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // check if the 'install' directory exists, and warn of its existence if (WARN_INSTALL_EXISTENCE == 'true') { if (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/install')) { $messageStack->add('header', WARNING_INSTALL_DIRECTORY_EXISTS, 'warning'); } } // check if the configure.php file is writeable if (WARN_CONFIG_WRITEABLE == 'true') { if ( (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) && (is_writeable(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) ) { $messageStack->add('header', WARNING_CONFIG_FILE_WRITEABLE, 'warning'); } } // check if the session folder is writeable if (WARN_SESSION_DIRECTORY_NOT_WRITEABLE == 'true') { if (STORE_SESSIONS == '') { if (!is_dir(tep_session_save_path())) { $messageStack->add('header', WARNING_SESSION_DIRECTORY_NON_EXISTENT, 'warning'); } elseif (!is_writeable(tep_session_save_path())) { $messageStack->add('header', WARNING_SESSION_DIRECTORY_NOT_WRITEABLE, 'warning'); } } } // check session.auto_start is disabled if ( (function_exists('ini_get')) && (WARN_SESSION_AUTO_START == 'true') ) { if (ini_get('session.auto_start') == '1') { $messageStack->add('header', WARNING_SESSION_AUTO_START, 'warning'); } } if ( (WARN_DOWNLOAD_DIRECTORY_NOT_READABLE == 'true') && (DOWNLOAD_ENABLED == 'true') ) { if (!is_dir(DIR_FS_DOWNLOAD)) { $messageStack->add('header', WARNING_DOWNLOAD_DIRECTORY_NON_EXISTENT, 'warning'); } } if ($messageStack->size('header') > 0) { echo $messageStack->output('header'); } ?> <table width="100%" border="0" cellspacing="0" cellpadding="0" height="46"> <tr> <td width="58%" align="left" valign="top" bgcolor="#000000" height="54"> <table width="303" border="0" cellspacing="0" cellpadding="0"> <tr><img src="images/aggrologo.gif"></td> </tr> </table> </td> <td width="42%" height="54" align="right" nowrap bgcolor="#000000"></td> </tr> <tr> <td colspan="2" align="left" valign="top" bgcolor="#FFCC00" height="19"></td> </tr> <tr> <td height="0" colspan="2" bgcolor="#000000"></td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="1"><tr class="headerNavigation"> <td class="headerNavigation"> <?php echo $breadcrumb->trail(' » '); ?></td> <td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> | <?php } ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> | <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> </td> </tr> </table> <?php if (isset($HTTP_GET_VARS['error_message']) && tep_not_null($HTTP_GET_VARS['error_message'])) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="headerError"> <td class="headerError"><?php echo htmlspecialchars(urldecode($HTTP_GET_VARS['error_message'])); ?></td> </tr> </table> <?php } if (isset($HTTP_GET_VARS['info_message']) && tep_not_null($HTTP_GET_VARS['info_message'])) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="headerInfo"> <td class="headerInfo"><?php echo htmlspecialchars($HTTP_GET_VARS['info_message']); ?></td> </tr> </table> <?php } ?> _______________ Thanks all!!
TB Posted December 15, 2004 Posted December 15, 2004 I've just had a quick look since I'm pressed for time... though are your http & https settings fine in your [catalog]/includes/configure.php ??? Might not be the problem... might be... Keep us posted and I'll help where I can in the time I have... Cheers, Tony "The price of success is perseverance. The price of failure comes much cheaper."
jayf Posted December 15, 2004 Author Posted December 15, 2004 I've just had a quick look since I'm pressed for time... though are your http & https settings fine in your [catalog]/includes/configure.php ??? Might not be the problem... might be... Keep us posted and I'll help where I can in the time I have... Cheers, Tony <{POST_SNAPBACK}> Pretty sure that they're right on, Tony. This seems to be isolated to the computer at home. I can't replicate it on any others, so I'm not going to worry about it anymore. It's a fluke! I appreciate your efforts!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.