I'm having trouble getting table based sessions working...
This is what I have in my config.php file
Code:
// Uncomment the following line if you need table-based sessions
'session' => array (
'class' => 'application.core.web.DbHttpSession',
'connectionID' => null,
'sessionTableName' => '{{sessions}}',
),
However, everytime I load a survey, I see a new "sess_" file being created in my /tmp directory and nothing changing in the database. The lime_sessions table still has just one row in it.
I've tried changing the "class", "connectionID" and "sessionTableName" entries but each time I get the same problem. I'm running 3.15.0
Does anyone know what I'm doing wrong?
Thanks...