I'm getting this error:
Error: [CakeSessionException] Unable to configure the session, setting session.auto_start failed.
I'm using Cakephp 2.2.4.
EDIT
It seems this guy had the same issue: Cakephp Session error on live site and using this
if(!isset($_SESSION)) session_start();
inside beforefilter
method of AppController
fix the error.
So my question is: why this happened? Everything was working fine and then suddendly this error appeared.
Additionally I've realized that the folder app/tmp/sessions
is empty and I have configured the session to be handled by Cake (in Config/core.php
).