Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Jakob Lithner 61 posts 264 karma points
    Mar 20, 2019 @ 17:41
    Jakob Lithner
    0

    Extend login expiration for frontend member

    I have figured out I can change these settings:

    umbracoTimeOutInMinutes in web.config

    keepUserLoggedInin umbracoSettings.config

    It works fine affecting the Backend Users to stay logged in longer. But I want to do the same thing for Frontend Members. How can that be done? I got the impression that the first setting would affect the frontend members as well but it does not. It seems to stay at the default 20 min.

  • Alex Skrypnyk 6132 posts 23951 karma points MVP 7x admin c-trib
    Mar 20, 2019 @ 17:50
    Alex Skrypnyk
    101

    Hi Jakob

    If you are using forms authentication then it's set using a timeout in the forms section of Web.config. I think the default is 20 minutes. To increase follow below.

    <authentication mode="Forms">
    <forms name="yourAuthCookie" loginUrl="login" protection="All" path="/" timeout="20" />
    </authentication>
    

    Thanks,

    Alex

  • Jakob Lithner 61 posts 264 karma points
    Mar 21, 2019 @ 06:47
    Jakob Lithner
    1

    Hurray, it worked!

    And so simple :)

    Thank you!

Please Sign in or register to post replies

Write your reply to:

Draft