Technical support This forum is closed.
Version 1.x > Technical support > Time Out after login. View modes: 
User avatar
Member
Member
eric - 11/16/2005 12:11:46 PM
   
Time Out after login.
just recently I noticed a change after login for a secured web site.
If I do not explicitly sign out from the secured web site my login remains valid on the server. The web site has the signout button implemented.

The situation was always that when I left IE completely on my local machine my login was somehow terminated.

I am not sure if it is my local machine or the server that caused this behavior. Therefore my question is:

How do I control that a login is terminated after so many minutes idle state of the user or when a user leaves the IE environment.

The dev guide App. A Web Config parameters does not say too much about the caching.

Pls hint me to the appropriate section in the guide or other advice is appreciated.
tks, -Eric.

User avatar
Guest
admin - 11/17/2005 1:59:53 PM
   
Re: Time Out after login.
Hi Eric,

Thank you for your post. Your login automatically expires after some period of inactivity (if the slidingExpiration web.config attribute is "true") or after specified number of minutes from your logon.

You can set this in the web.config file, in the following lines:

<authentication mode="Forms">
<forms name="CMSCookie" loginUrl="~/cmsdesk/logon.aspx" protection="All" path="/" slidingExpiration="true" timeout="60">
</forms>
</authentication>

The default timeout is 60 minutes. These are actually standard settings of ASP.NET Forms Authentication.

Should you need any help with that, please let us know.

Best Regards,