Guest Posted March 2, 2006 Posted March 2, 2006 Hi! I really need help now... I have this error in gallery.php (coppermine): Fatal error: Call to a member function on a non-object in /home/muccelmi/public_html/muccelmic/includes/footer.php on line 18 This is footer.phpfrom line 1 to 20: <?php /* $Id: footer.php,v 1.26 2003/02/10 22:30:54 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ //require(DIR_WS_INCLUDES . 'counter.php'); ?> <table border="0" width="100%" cellspacing="0" cellpadding="1"> <tr class="footerNavigation"> <td class="footerNavigation"> <?php echo $breadcrumb->trail(' » '); ?></td> <td align="right" class="footerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="footerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> | <?php } ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="footerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="footerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> | <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="footerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> </td></tr> </table> I really don't know how to fic this, so please, if anyone knows, help me! Thank you!
kgt Posted March 2, 2006 Posted March 2, 2006 Does gallery.php include application_top.php? Contributions Discount Coupon Codes Donations
kgt Posted March 2, 2006 Posted March 2, 2006 Because you need it. It's failing on this: $breadcrumb->trail(' » '); trail() is a function of the object $breadcrumb. The error is telling you $breadcrumb is not an object. Contributions Discount Coupon Codes Donations
Recommended Posts
Archived
This topic is now archived and is closed to further replies.