Hab ich auch hin bekommen. Der referer wird mir bis in den Shop übergeben.
Aber nur wenn ich einmal auf den 1.Link klicke. Wenn ich alle Fenster, bis auf das wo der Link steht schließe, und dann den Link noch einmal benutze, dann bekomm ich das hier.
Fatal error: 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 /homepages/32/d66748116/htdocs/carmodding/catalog/includes/application_top.php on line 318 |
Das ist doch bestimmt, weil die Session noch offen ist. Wie kann man das abändern?
In der application_top.php steht dieses um zeile 318
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12: | // 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(); |
billi