How would I make the "[] Remember me on this computer" checkbox work using SimpleAuth? I can't find a mehod to control session timeout for the logged in user.
Hello
Since I'm on 1.0.1 version (not dev) I ported this function from development version: http://scrp.at/at7
I changed expire_on_close to true in session.php.
Later, I the login function I set up the remember_me to true (Session::set('remember_me', true)), if it was checked.
And check later it inside the base controller:
if (\Session::get('remember_me', false) === true)
{
\Session::instance()->set_config('expire_on_close', false);
}