Heath Jordan Business Consultant

Tag: osCommerce


osCommerce Fatal error: Call to a member function add_current_page() on a non-object

by on Jan.18, 2010, under Blog

Fatal error: Call to a member function add_current_page() on a non-object in /home/public_html/includes/application_top.php on line 305

should be an issue when register globals is set to off.
if (tep_session_is_registered(‘navigation’)) {
if (PHP_VERSION < 4) {
$broken_navigation = $navigation;
$navigation = new navigationHistory;
$navigation->unserialize($broken_navigation);
}
}
replace with
if (tep_session_is_registered(‘navigation’)) {
if (PHP_VERSION < 4) {
$broken_navigation = $navigation;
$navigation = new navigationHistory;
$navigation->unserialize($broken_navigation);
}
$navigation=$_SESSION['navigation'];
}


1 Comment : more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!