Enable Database Based Sessions on 5.7
This tutorial is over a year old and may not apply to your version of Concrete CMS.
Dec 6, 2014
To enable database based sessions in Concrete CMS 5.7+ you simply need to add a configuration value to /application/config/concrete.php.
The config value is "concrete.session.handler" and needs to be set to the value of "database".
An example code would be the following:
return array(
'session' => array(
'handler' => 'database'
)
);