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.
<forms name=".DOTNETNUKE" protection="All" timeout="60" />
Change the value 60 to something larger
<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! ;) 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! ;)