mmoproz Posted August 16, 2008 Share Posted August 16, 2008 Ok after the usual warnings and other things that i had to fix like everybody. Now i can get to my admin screen , but not my catalog, i will get this. Fatal error: Unknown(): The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition navigationhistory of the object you are trying to operate on was loaded _before_ the session was started in /home/mmoproz/public_html/includes/application_top.php on line 312 Pls help Link to comment Share on other sites More sharing options...
mmoproz Posted August 16, 2008 Author Share Posted August 16, 2008 Ok after the usual warnings and other things that i had to fix like everybody.Now i can get to my admin screen , but not my catalog, i will get this. Fatal error: Unknown(): The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition navigationhistory of the object you are trying to operate on was loaded _before_ the session was started in /home/mmoproz/public_html/includes/application_top.php on line 312 Pls help i already tried to change this: // navigation history if (tep_session_is_registered('navigation')) { if (PHP_VERSION < 4) { $broken_navigation = $navigation; $navigation = new navigationHistory; $navigation->unserialize($broken_navigation); } } else { tep_session_register('navigation'); $navigation = new navigationHistory; } $navigation->add_current_page(); // Shopping cart actions if (isset($HTTP_GET_VARS['action'])) { // redirect the customer to a friendly cookie-must-be-enabled page if cookies are disabled if ($session_started == false) { tep_redirect(tep_href_link(FILENAME_COOKIE_USAGE)); to this: // navigation history if (tep_session_is_registered('navigation')) { if (PHP_VERSION < 4) { $broken_navigation = $navigation; $navigation = new navigationHistory; $navigation->unserialize($broken_navigation); } else { $navigation = new navigationHistory; } } else { tep_session_register('navigation'); $navigation = new navigationHistory; } $navigation->add_current_page(); didn't helped Link to comment Share on other sites More sharing options...
Jan Zonjee Posted August 16, 2008 Share Posted August 16, 2008 didn't helped Did you already try to just delete the cookie from your browser? (Or close your browser and restart it?) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.