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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Logged in as another user - how is this happening?

Status
Not open for further replies.

programmher

Programmer
Joined
May 25, 2000
Messages
235
Location
US
From time-to-time, some of my users can see another user's session when they use their "back" button. How is this happening and how can I remedy it? These other users have NEVER been logged in to the other machines. I suspect expired sessions are being accessed and viewed but am not sure how or why this is happening. 8-)
 
I guess the time limit for your session varaibles to expire is pretty long or may be that the session varaibles do not expire when the user closes the browser.I have done something like this, while defining my session variables:

<CFAPPLICATION NAME=&quot;LabNavigator&quot; SESSIONMANAGEMENT=&quot;Yes&quot;>

<cflock timeout=&quot;30&quot; Name=&quot;#Session.SessionID#&quot; Type=&quot;Exclusive&quot;>
<cfcookie name=&quot;CFID&quot; value=&quot;#session.CFID#&quot;>
<cfcookie name=&quot;CFTOKEN&quot; value=&quot;#session.CFTOKEN#&quot;>
</cflock>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top