Side 1 af 1

Admin virker, forsiden virker ikke?

Indlæg: 2005-10-12 22:36
af JohnSahl
Jeg får følgende fejl:

"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 /www/shop/includes/application_top.php on line 324"

Nogen der har en ide til hvad jeg skal gøre?

Indlæg: 2005-10-12 22:41
af JohnSahl
Og få minutter efter finder jeg så løsningen. Flot John :-(

Change the nagivation history chunk of code in application_top.php to read:

<code>
// 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();
</code>

Indlæg: 2005-10-12 22:42
af w3
8)