Page 1 of 1

Idle User Logout

PostPosted: Tue Nov 24, 2009 6:32 pm
by mikep
Hey,
Will xataface automatically log out idle users? If so, how long is a user inactive to be considered idle. Additionally, is there any way to adjust this?



Thanks,
Mike

PostPosted: Tue Dec 01, 2009 1:44 pm
by shannah
The php session timeout will affect this. You can set this value using the session_timeout directive in the [_auth] section of your conf.ini file.

e.g.
Code: Select all
[_auth]
    users_table=users
    username_column=username
    password_column=password
 
    allow_register=1
    session_timeout=999999999


-Steve

Re: Idle User Logout

PostPosted: Tue Jan 12, 2010 8:02 pm
by mikep
Thank you.