I make the integration of Wincache with Joomla 1.5, but i see often, in php_errors this:
PHP Warning: Creating default object from empty value in joomla.php on line 136
The code is this:
$session =& JFactory::getSession();
$session->set('user', $instance);
$storage = $session->_store;
$session_data = $storage->readSessionData($session->getId());
/*136*/ $session_data->guest = $instance->get('guest');
$session_data->username = $instance->get('username');
I think that I need to declare the object but i don't know how...
Thanks!