Blog Home  Home Feed your aggregator (RSS 2.0)  
Venexus DotNetNuke Blog - DotNetNuke 4 Persistent Login - Remember me for more than 1 hour!
DotNetNuke Articles, Code Snippets, Errors, and News
 
 Sunday, March 12, 2006

The "Remember Me" functionality during DotNetNuke 4 login works for only 1 hour by default. Previously, this had been set to 50 years. In order to change persistent login to an extended time, a change to the web.config file is necessary. In the web.config you should see this:

<authentication mode="Forms">
      <forms name=".DOTNETNUKE" protection="All" timeout="60"/>
</authentication>

To increase the period of persistent login to 7 days would be this:

<authentication mode="Forms">
      <forms name=".DOTNETNUKE" protection="All" timeout="10080"/>
</authentication>

To increase the period of persistent login to 1 Year would be this:

<authentication mode="Forms">
      <forms name=".DOTNETNUKE" protection="All" timeout="
525600
"/>
</authentication>

Hope that helps!

Sunday, March 12, 2006 1:07:26 PM (US Eastern Standard Time, UTC-05:00)  #       | 
Copyright © 2010 Venexus, Inc.. All rights reserved.