Weil mich der Fehler schon wieder ewig aufgehalten hat, will ich einfach mal die Lösung festhalten.
Ich arbeite mit einem Amazon Webservice, um meine Bücher leichter in die Datenbank pflegen zu können. In der Benutzung bekam ich allerdings beim Seitenwechsel diesen Fehler:
Warning: session_start() [function.session-start]: Node no longer exists in $pfad on line $ziffer
Warning: Unknown: Node no longer exists in Unknown on line 0
Die Lösung fand sich im PHP-Resource-Forum:
I was using SimpleXMLElement and even though the value in the XML value could be printed to the screen with no error, reading that value into a session variable caused the error.
Resolution…
stick (string) before the XML object. E.g:
PHP Code:$MyValue= (string)$data->viewentry->entrydata[0]->text;
-_-” Darauf wär ich nie gekommen.