Fresh installation of tank_auth
library over Codeigniter 2.1.3.
When I try to access 'http://localhost/es/auth/register' gets following PHP error:
A PHP Error was encountered
Severity: Notice
Message: Undefined property: Auth::$db
Filename: libraries/Session.php
Line Number: 201
Everything seems to be configured and 'autoloaded'.
Edit: My '/application/config/autoload.php' file contains following lines:
$autoload['packages'] = array();
$autoload['libraries'] = array('database', 'session', 'xmlrpc','encrypt');
$autoload['helper'] = array('url', 'file');
$autoload['config'] = array();
$autoload['language'] = array();
$autoload['model'] = array();
What might be wrong?