Description of my issue:
akeeba.cli.log and has 0 bytes
After I've installed the latest Joomla upgrade (3.4.7) command line backup stoped working in several Joomla sites I run.
PHP Fatal error: Call to a member function get() on a non-object in /var/www/..../public_html/libraries/joomla/session/session.php on line 448
This is the function that produces the error
public function get($name, $default = null, $namespace = 'default')
{
// Add prefix to namespace to avoid collisions
$namespace = '__' . $namespace;
if ($this->_state === 'destroyed')
{
// @TODO :: generated error here
$error = null;
return $error;
}
return $this->data->get($namespace . '.' . $name, $default);
}
dumping variable "$this" is says "data is protected"
JSession Object
(
[_state:protected] => inactive
[_expire:protected] => 900
[_store:protected] => JSessionStorageDatabase Object
(
)
[_security:protected] => Array
(
[0] => fix_browser
)
[_force_ssl:protected] =>
[storeName:protected] => database
[_input:JSession:private] =>
[_dispatcher:JSession:private] =>
[data:protected] =>
)