Allways log in.
Last Post 08/16/2006 7:02 AM by avi avi. 2 Replies.
Author Messages
avi avi
Nuker
Nuker
Posts:11


--
08/14/2006 6:20 PM
    Hi Lee!
    I see that when ever i enter your site I am always logged in, which I like.
    Can you explain how to do that?
    Thanks Avi.
    Lee Sykes
    DNN Creative Staff
    Nuke Master VI
    Nuke Master VI
    Posts:4945


    --
    08/16/2006 4:24 AM
    Hello,

    This is because DNN C is currently running on DNN v 3.2.2 and asp.net 1.1

    In the latest version 4.3.4 and asp.net 2.0 you will have a problem for staying logged in.

    However, a tip was provided by Chris Hammond on the DotNetNuke blogs, so this should help to solve your problem,

    thanks,

    Lee



    http://dotnetnuke.com/Community/Blo...fault.aspx

    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" />

    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! ;) 

    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! ;)
    Lee Sykes
    Site Administrator
    Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

    Twitter: www.twitter.com/DNNCreative

    Lee Sykes's Facebook Profile
    avi avi
    Nuker
    Nuker
    Posts:11


    --
    08/16/2006 7:02 AM
    Thanks.


    ---