A simple database session store with extra functionality that keeps a 'map' of logged-in users. Authenticate objects can then use this map to prevent multiple login of the same user.
Requirement:
- wddx module is activated
- cakephp > 2.2
Add the following in Config/bootstrap.php
:
CakePlugin::load('DbSession', array('bootstrap' => true));
Activate the plugin via the admin backend, or via CLI:
Console/cake ext activate plugin DbSession