Authake is finally arrived to CakePHP 2.2.3 and is (another) solution to manage users and groups and their rights in a CakePHP platform, as well as their registration, email confirmation and password changing requests. It’s composed by a component, a plugin, and a helper.
- jQuery library update
- Settings save and restore
- Up & run with SQLite storage instead of mysql
- Some little changes in interface
// Add to database.php
public $authake2 = array(
'datasource' => 'Database/Sqlite',
'database' => '',
'persistent' => false,
'prefix' => ''
);
function __construct() {
$this->authake2['database'] = APP .DS. 'Plugin' .DS. 'Authake' .DS. 'SQLite' .DS. 'authake2.sqlite';
}
For other documentation see https://github.com/mtkocak/authake