Copied to clipboard

Flag this post as spam?

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


  • pat 124 posts 346 karma points
    Nov 29, 2013 @ 16:23
    pat
    0

    umbraco 4.7 member login not works in IE11

    Hi all,

    I have a working umbraco 4.7 website which has member login and other forms developed using usercontrols. we are experiencing session data lost in IE11 , member login to site and redirecting to myaccount page, but in IE11 does not adding member to session /   Member.AddMemberToCache(m); 

    redirect back to login form. I have seen few articles and forum entries I have install hotfix describe in 

    http://support.microsoft.com/kb/2600088

    and tried to upgrade my usercontrols project  target to 4.5 but I canot set web site application pool to .net v4.5 

    it's only shows version 4 so how do I sort this  please . I don't know whether umbraco 4.7 is compaitble with .net 4.5 please give your advise to solve this issue.

     

  • pat 124 posts 346 karma points
    Dec 02, 2013 @ 17:14
    pat
    0

    unfortunatelyI haven't got any advice on this , anyone whocan help to sort this one out would be bless...

     

  • Nicolai Winch Kristensen 50 posts 70 karma points
    Dec 17, 2013 @ 13:28
    Nicolai Winch Kristensen
    0

    Hi pat

     

    Did you resolve this? I have exact same problem!

    Best Regards

    Nicolai

     

  • Thor Madsen-Holm 82 posts 212 karma points c-trib
    Dec 18, 2013 @ 14:39
    Thor Madsen-Holm
    0

    Has anyone resolved this one, i'm having the same issue on a 4.11.9 site

  • Nicolai Winch Kristensen 50 posts 70 karma points
    Dec 18, 2013 @ 14:43
    Nicolai Winch Kristensen
    0

    no - still no solution 

  • Dennis Aaen 4499 posts 18254 karma points admin hq c-trib
    Dec 18, 2013 @ 14:55
    Dennis Aaen
    0

    Hi Thor,

    At my work we has the same problem with member login forms in IE 11, in another .NET based CMS. The solution we have used, is create a  browser file for IE11.browser and drop it the i "App_Browsers" folder.

    The file has this content:

    <browsers>
        <browser id="IE11" parentID="Mozilla">
            <identification>
                <userAgent match="Trident\/7.0; rv:(?'version'(?'major'\d+)(\.(?'minor'\d+)?)(?'letters'\w*))(?'extra'[^)]*)" />
                <userAgent nonMatch="IEMobile" />
            </identification>

            <capture>
                <userAgent match="Trident/(?'layoutVersion'\d+)" />
            </capture>

            <capabilities>
                <capability name="browser"              value="IE" />
                <capability name="layoutEngine"         value="Trident" />
                <capability name="layoutEngineVersion"  value="${layoutVersion}" />
                <capability name="extra"                value="${extra}" />
                <capability name="isColor"              value="true" />
                <capability name="letters"              value="${letters}" />
                <capability name="majorversion"         value="${major}" />
                <capability name="minorversion"         value="${minor}" />
                <capability name="screenBitDepth"       value="8" />
                <capability name="type"                 value="IE${major}" />
                <capability name="version"              value="${version}" />
            </capabilities>
        </browser>

        <!-- Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11,0) like Gecko -->
        <browser id="IE110" parentID="IE11">
            <identification>
                <capability name="majorversion" match="11" />
            </identification>

            <capabilities>
                <capability name="ecmascriptversion"    value="3.0" />
                <capability name="jscriptversion"       value="5.6" />
                <capability name="javascript"           value="true" />
                <capability name="javascriptversion"    value="1.5" />
                <capability name="msdomversion"         value="${majorversion}.${minorversion}" />
                <capability name="w3cdomversion"        value="1.0" />
                <capability name="ExchangeOmaSupported" value="true" />
                <capability name="activexcontrols"      value="true" />
                <capability name="backgroundsounds"     value="true" />
                <capability name="cookies"              value="true" />
                <capability name="frames"               value="true" />
                <capability name="javaapplets"          value="true" />
                <capability name="supportsCallback"     value="true" />
                <capability name="supportsFileUpload"   value="true" />
                <capability name="supportsMultilineTextBoxDisplay" value="true" />
                <capability name="supportsMaintainScrollPositionOnPostback" value="true" />
                <capability name="supportsVCard"        value="true" />
                <capability name="supportsXmlHttp"      value="true" />
                <capability name="tables"               value="true" />
                <capability name="supportsAccessKeyAttribute"    value="true" />
                <capability name="tagwriter"            value="System.Web.UI.HtmlTextWriter" />
                <capability name="vbscript"             value="true" />
            </capabilities>
        </browser>
    </browsers>

    And I named the file: ie11.browser. To ensure that the content of "App_Browsers" folder is being re-compilet, you can start by deleting it, make IIS reset after that put the files back + make a new IIS reset.

    Perhaps this approach also works in Umbraco, you could give it a try.

    Hope this helps.

    /Dennis

  • Thor Madsen-Holm 82 posts 212 karma points c-trib
    Dec 18, 2013 @ 16:30
    Thor Madsen-Holm
    0

    Hi Dennis, 

    Will definately give that a go, thanks for the input

    /Thor 

  • Dennis Aaen 4499 posts 18254 karma points admin hq c-trib
    Jan 03, 2014 @ 13:16
    Dennis Aaen
    0

    Hi Thor,

    Did you have time to give my suggestion a go on how to get the login form working in IE 11?

    /Dennis

  • bob baty-barr 1180 posts 1294 karma points MVP
    Jan 09, 2014 @ 16:55
    bob baty-barr
    0

    i did see this on stackoverflow and it appears to have worked.

    http://stackoverflow.com/questions/19725827/internet-explorer-11-session-issue-with-asp-net-4-0

     

    <authenticationmode="Forms"><formsloginUrl="~/YourLoginUrl"timeout="2880"cookieless="UseCookies"/></authentication>
Please Sign in or register to post replies

Write your reply to:

Draft