Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Time Out Details

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Is there any way to reset the users information once that user has timed out so the the user does not have to go through all the steps to get back to where he/she was before they timed out?
 
You could try adjusting the time outs ... This one times out in 30 minutes...

<CFAPPLICATION NAME=&quot;Security_Test&quot;
CLIENTMANAGEMENT=&quot;YES&quot;
SESSIONMANAGEMENT=&quot;YES&quot;
SESSIONTIMEOUT=#CreateTimespan(0,0,30,0)#>


This one is closer to an hour.

<CFAPPLICATION NAME=&quot;Security_Test&quot;
CLIENTMANAGEMENT=&quot;YES&quot;
SESSIONMANAGEMENT=&quot;YES&quot;
SESSIONTIMEOUT=#CreateTimespan(0,1,0,0)#>

Depending on the level of security you are trying to maintain, you could set the values to a &quot;permanent&quot; cookie, but of course, if users start passing their cookies around you may run into trouble....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top