I keep having to reauthenticate?
Moderators: Developer, Contributor
I keep having to reauthenticate?
I keep having to re-authenticate peridocially. How can I extend the session length?
Re: I keep having to reauthenticate?
Hi
The session length is set in file core/constant_inc.php
Change the line
This line sets the reauthentication interval to 5 minutes.
The session length is set in file core/constant_inc.php
Change the line
Code: Select all
define( 'TOKEN_EXPIRY_AUTHENTICATED', 5*60 );
Re: I keep having to reauthenticate?
Thanks, I'll try that.