Hi, I am fairly new to DNN and am now maintaining a site designed with it. I recently made the decision to swap out the old login module (EasyAD) for the DNN login module using the AD provider. I followed the setup steps provided here:
http://dnnauthad.codeplex.com/documen...
I deployed the site and users are able to successfully log in and view the site's contents as normal. If a user is inactive on the site for 20-59 minutes and attempts to click around the site, the user is correctly logged off. (Note: I changed the dnn timeout to 20 minutes in the web config.) However, if the user is inactive on the site for 60+ minutes and attempts to click around, they are directed to an error page that reads: "You do not have access to view this tab within the portal". The site should always just keep the user logged out after the timeout. It seems the user is still logged in to the site, but has no rights to view any of its contents.
I have experienced this on the following setups:
DNN Version 5.04.02, AD Provider version 5.00.02, Windows Server 2003, IIS6
DNN Version 5.04.02, AD Provider version 5.00.02, Windows Server 2008, IIS7
A few notes about changes that I have made after digging through the forums:
-Using Forms authentication
-Identity Impersonate is commented out
-PersistentCookieTimeout is set to 0
-Authentication timeout is set to 20
-Anonymous access was disabled on WindowsSignin.aspx, and Integrated Win Auth was enabled
Thanks!