Heya,

Internet Explorer 10 is not compatible or supported with your version.

We are running 7.6.4sp3 MidTier and have users with IE 10 on Windows 7 & 8 
machines, which has caused us a minor headache.

So, to address this, I altered the login_common.jsp file to include an IE10 
Browser check, which will throw up a warning message, if the user is on IE10, 
to have them use either Firefox, Chrome or a compatible version of Internet 
Explorer.

You will need to alter the IE8 detection/handling code first and then add in 
the IE10 code.

My altered code, as an example:

function shoeIE8VersionAlert() {
        // get the path
        var pathstr = requrl;
        var patharr = pathstr.split("/");
        pathstr = patharr[0];
        
        var ie8Warn = getCookieValue('I');
        if (ie8Warn != 1) {
                ie8Warn = 1; //run popup check exactly once
                addAlert("<%=MessageTranslation.getLocalizedText(locale, "For 
Midtier to work properly on Internet Explorer 8, Please make sure that you have 
required patch installed. Please see")%>" + " <a target='_blank' 
href='http://www.microsoft.com/technet/security/bulletin/MS10-018.mspx'>Microsoft
 Security Bulletin MS10-018</a>");
                //set a cookie to show you have already displayed a message
                var ie8Cookie = "I=" + ie8Warn + ";path=/" + pathstr;
                document.cookie = ie8Cookie;
        }
}

function shoeIE10VersionAlert() {
        // get the path
        var pathstr = requrl;
        var patharr = pathstr.split("/");
        pathstr = patharr[0];
        
        var ie10Warn = getCookieValue('I');
        if (ie10Warn != 1) {
                ie10Warn = 1; //run popup check exactly once
                addAlert("<%=MessageTranslation.getLocalizedText(locale, 
"Internet Explorer 10 is NOT COMPATIBLE. Please use Internet Explorer 9 or 
another supported browser, such as Chrome or FireFox.")%>");
                //set a cookie to show you have already displayed a message
                var ie10Cookie = "I=" + ie10Warn + ";path=/" + pathstr;
                document.cookie = ie10Cookie;
        }
}

function addAlert(msg) {
        document.getElementById("alertArea").style.display = "block";
        var prnt = document.getElementById("errList");
        var li = document.createElement("LI");
        var para = document.createElement('P');
        para.className = "warning";
        para.innerHTML = msg;
        li.appendChild(para);
        prnt.appendChild(li);
}


/*
 * This function performs the necessary initialization
 * when page is loaded.
 */
function initLogin() {
    // check if cookie is enabled so applications can run
    if (document.cookie == "") {
        alert("<%=MessageTranslation.getLocalizedText(locale, "Cookies are 
disabled. Cannot access mid-tier with this setting.\\nPlease configure your 
browser to accept cookies.")%>");
        return;
    }

        detectPopupBlockers();
        
        detectFlash();
        
    setInitialFormState();

    // Check browser type and version
    var browserOK = false;
    var browserApp = navigator.appName;

    // Netscape
    if (browserApp == "Netscape") {
        //all NN7 browsers and above are Gecko based
        if (navigator.userAgent.indexOf("Gecko") != -1)
            browserOK = true;
    }
    // IE
    else if (browserApp == "Microsoft Internet Explorer") {
        var browserVersion = navigator.appVersion;
        var MSIEindex = browserVersion.indexOf('MSIE ');

        // Check for IE version 6.0 or higher
        if (MSIEindex >= 0) {
            var MSIEversion = browserVersion.substring(MSIEindex+5);
            var vf = parseFloat(MSIEversion);
            if (vf >= 6.0)
                browserOK = true;
            if(vf == 8)
                shoeIE8VersionAlert();
                        if(vf == 10)
                shoeIE10VersionAlert();
        }
    }

Hope this helps.

Keith Sinclair
Sr. Application Developer
 
DeVry Inc.                                                                      
                    
814 Commerce Dr.  
Oakbrook, IL 60523-8822                       
p: 630.645.1143                                     
e: [email protected]
w: www.devryinc.com





-----Original Message-----
From: Action Request System discussion list(ARSList) 
[mailto:[email protected]] On Behalf Of [email protected]
Sent: Thursday, April 11, 2013 7:35 AM
To: [email protected]
Subject: Problem Internet Explorer 10.

Hello to all,
anyone has problems using the Mid Tier with Internet Explorer 10?

since I updated the browser I have to report a java exception!
thanks in advance
Pietro

Ar Server 7.1.00 Patch 011 201007230200 Mit Tier Version 7.6.04 SP4 201209051922

_______________________________________________________________________________
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org "Where the Answers 
Are, and have been for 20 years"


_______________________________________________________________________________
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
"Where the Answers Are, and have been for 20 years"

Reply via email to