Situation: It seems impossible to store any objects in the CI_Session since, reading them results in the PHP_Incomplete_Object exceptions, as the session is always started, before loading the models. This way, even when autoloading the Type of object, I am never able to read the data from the session.
I also tried using the "Native Session", but there it's exactly the same problem.
Furthermore I tried storing the object serialized, but when unserializing long after having all the models loaded, it still becomes an object with type "__PHP_Incomplete_Class ".
Anyone know a workaround? And please keep "why would you want an object in the session" answers. Seen enough of those ...