Jump to content

Forced Logout - Inactivity


DesComm

Recommended Posts

Hello, I did not quite understand your question.

If you are wanting a pilot to leave the site at an exact time, you can find the code /core/app.config.php (PhpVMS 5.5 Simpilot), it is near line 117. This is the default code:

 

Config::Set('USERS_ONLINE_TIME', 20);

And if you want to remove a pilot from your VA, from a time this is the code: (Can be found on line 67 and 68 of the same file) - AUTOMATIC

 

# After how long to mark a pilot inactive, in days
Config::Set('PILOT_AUTO_RETIRE', true);
Config::Set('PILOT_INACTIVE_TIME', 90);

 

Also has the cookie, which you can find on line 209 and 210 of the same file:

 

# Cookie information
Config::Set('SESSION_LOGIN_TIME', (60*60*24*30)); # Expire after 30 days, in seconds
Config::Set('SESSION_GUEST_EXPIRE', '30'); # Clear guest sessions 30 minutes
//Config::Set('SESSION_COOKIE_NAME', 'VMS_AUTH_COOKIE');

 

Edited by CarlosEduardo2409
Link to comment
Share on other sites

Thanks for reply however none of these address the issue.  Its very simple - a person logs into the system and then is inactive for a period of "XX_minutes".  Then the following should happen:

  1. A warning that they will be disconnected due to inactivity
  2. Disconnected from the system

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...