This might be worth a try:
We had many web clients ask why they were getting logged out. The following is what we did.
If you try this, be sure to back up a copy of your web.config file
Note: 64800 = 45 days
Chris Hammond came up with this solution:
Have you noticed that since running your DNN website on the .net 2.0 framework you can't stay logged in for more than an hour? Even if you have the "remember me" option checked?
Well here's your fix. In the Web.config of your DNN instance find the TIMEOUT section.
<form>s name=".DOTNETNUKE" protection="All" timeout="60" />
forms name=".DOTNETNUKE" protection="All" timeout="60" />
Change the value 60 to something larger
<form>s name=".DOTNETNUKE" protection="All" timeout="64800" />
This should help you to stay logged in! A very annoying feature of .net 2.0 is that it actually follows this timeout, how dare them! ;)
forms name=".DOTNETNUKE" protection="All" timeout="600000" />
This should help you to stay logged in! A very annoying feature of .net 2.0 is that it actually follows this timeout, how dare them! ;)
This should help you to stay logged in! A very annoying feature of .net 2.0 is that it actually follows this timeout, how dare them! ;)
Best regards,
Buck Anderson |