internet explorer 11 log in failure

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
9/14/2013 10:35:11 AM
Gravatar
Total Posts 159

internet explorer 11 log in failure

~~I just installed windows 8.1 (MSDN RTM) and therefore also explorer 11 but with this latest version I can not log in to my mojoportal site. while I can do log in perfectly with previous versions of Explorer. I tried to change the application pool from integrated to classic but nothing changes. i use mojoportal latest release 2.3.9.8 on dot net 4.0 and SQL server and IIS 7.5 on aruba (italy)

I also tried to change the skin, but it still does not do log in. the site log registry don't report any error log...

 

server error is :

 

~~HTTP Error 405.0 - Method Not Allowed

The page you are looking for cannot be displayed because an invalid method (HTTP verb) is being used.

 

 

9/16/2013 7:29:38 AM
Gravatar
Total Posts 18439

Re: internet explorer 11 log in failure

such are the dangers of the bleeding edge of technology. 

I don't have Windows 8.1 or IE 11 yet so I have no way to test but I suspect it is because the server browser definitions do not recognize IE 11, probably similar to this problem or this problem. Most likely the problem will be fixed by windows update on the server.

Are you able to login to our demo site with IE 11?

9/16/2013 11:19:47 AM
Gravatar
Total Posts 159

Re: internet explorer 11 log in failure

yes, I access the demo site correctly.

how can we fix it?

9/16/2013 12:26:14 PM
Gravatar
Total Posts 18439

Re: internet explorer 11 log in failure

I hate to tell you this but I'm afraid the only fix is going to be by installing .NET 4.5, Microsoft is doing stupid things with IE 11, if you google for "ie11 asp.net" you will find lots of people having problems

9/16/2013 1:58:41 PM
Gravatar
Total Posts 159

Re: internet explorer 11 log in failure

you're right joe, but on the demo site I access regularly. how come?

Aruba uses IIS 7.5

 

we can try to change the user agent string? if you can show me where and how to change it?

9/16/2013 2:05:15 PM
Gravatar
Total Posts 18439

Re: internet explorer 11 log in failure

because the demo site is running on .NET 4.5 and has all the latest windows updates. It is not about the IIS version its about the .NET framework. .NET 4.5 is like a service pak for .NET 4 and they fixed this bug in .NET 4.5. I would ask you host if they can install .NET 4.5 on the server.

9/16/2013 2:11:10 PM
Gravatar
Total Posts 159

Re: internet explorer 11 log in failure

ok joe, you're right.

I'll try to ask whether it is possible to aruba

 

thanks joe, if you have news or ideas ..... we stay tuning

9/19/2013 9:51:13 AM
Gravatar
Total Posts 18439

Re: internet explorer 11 log in failure

fyi, I just released mojoPortal 2.3.9.9

Note that one change in this release is that we added a generic.browser file as in this article, so that if an unknown new browser is detected it will assume cookies are supported instead of assuming they are not supported.

I have no idea if that will solve the IE 11 problem but you never know it might.

9/20/2013 1:29:44 PM
Gravatar
Total Posts 159

Re: internet explorer 11 log in failure

hi joe,

I just upgraded to the latest version but unfortunately the error that occurred on 11 explorer has not disappeared and continues to be present.

where is the code where you declare the generic browser? I try to reload it .. although as you think it is not resolved until we NET 4.5 on the server machines aruba.

11/16/2013 10:50:03 AM
Gravatar
Total Posts 159

Re: internet explorer 11 log in failure - postback error

i have try to fix problem of post back making a new file generic.browser.

making a file named generic.browser as follow and put in the App_Browser folder

 

<browsers>
<browser id="IE11" parentID="Mozilla">
<identification>
    <userAgent match="Trident/(?'layoutVersion'[7-9]|0*[1-9]\d+)(\.\d+)?;(.*;)?\s*rv:(?'version'(?'major'\d+)(\.(?'minor'\d+)))" />
    <userAgent nonMatch="IEMobile" />
    <userAgent nonMatch="MSIE" />
</identification>   
<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="majorversion"         value="${major}" />
    <capability name="minorversion"         value="${minor}" />
    <capability name="screenBitDepth"       value="8" />
    <capability name="type"                 value="IE${major}" />
    <capability name="version"              value="${version}" />
    <capability name="ecmascriptversion"    value="3.0" />
    <capability name="jscriptversion"                       value="6.0" />
    <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>

11/18/2013 8:44:31 AM
Gravatar
Total Posts 14

Re: internet explorer 11 log in failure

Tried to login today with IE11.
I'm runing IE11 on Win7.

Works as expected.

Thank you Joe.

You must sign in to post in the forums. This thread is closed to new posts.