Guest Posted February 1, 2004 Share Posted February 1, 2004 O.k. I'll try my best to make the most sense of this as I can. I am trying to add a link in my header navigation for a new php file. For testing purpose I created the new files identical to conditions.php for both catalog/conditions.php and english/catalog.php. I defined the path in filenames.php but is there any other paths I need to set. The link is showing up in the header but when you click on it you I'm getting a 404 error. Thanks in advance. heres the code.. </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> | <a href="<?php echo tep_href_link(FILENAME_LINE_CARD); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LINE_CARD; ?></a></td> </tr> </table> Just give me 10 more minutes and I'll figure it out!? Link to comment Share on other sites More sharing options...
OceanRanch Posted February 1, 2004 Share Posted February 1, 2004 Are the links really SSL? When you get 404 in your browser, change the URL from https to http and see if this resolves it. HTH Tom Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.