Forms Authentication

Discussion in 'General troubleshooting' started by lziegenhirt, Sep 20, 2009.

  1. When switching between pages the user becomes unautherized and gets routed to the login page. This does not happen on my development environment.

    Apppool is integrated. The site won't work with classic.

    Are there some specific form authentication settings I need to have in IIS? .
     
  2. Ray

    Ray

    What is your session timeout set to? Did you try increasing it in your applications web.config file?
     
  3. I have this same issue. Here is what I have in my Web.Config file and I have double checked in the Forums Authentication section in IIS Manager.

    <authentication mode="Forms">
    <forms loginUrl="~/Account/Login" timeout="525600"/>
    </authentication>
     
  4. Ray

    Ray

    For something like this you may want to open a ticket to the Winhost support department. They can check the server and double check why you maybe loosing your session.

    Have you thought of using SQL session instead of InProc?

    Try looking at this kb article.
     
    Last edited by a moderator: Oct 14, 2015

Share This Page