1. You are viewing our forum as a guest. For full access please Register. WindowsBBS.com is completely free, paid for by advertisers and donations.

Resolved Internet Explorer 8 shows different on websites

Discussion in 'Internet Explorer & Microsoft Edge' started by melvinjn, 2010/04/01.

  1. 2010/04/01
    melvinjn

    melvinjn Inactive Thread Starter

    Joined:
    2009/04/27
    Messages:
    32
    Likes Received:
    0
    Hi all

    I use internet explorer 8 for a long time and recently I had started to see that the website http://www.trendsecure.com/portal/en-US/tools/security_tools/# has a new information on top mentioning that

    "Your current Web browser may not display this site properly.
    TrendSecure performs best when opened with the latest version of either Microsoft Internet Explorer or Mozilla Firefox . "

    On the other side, I am still able to open sites that need internet explorer and this functionally works well.

    If I use this site http://aruljohn.com/ it tells me that my browser - internet explorer 8 is Mozilla 5.0 which I dont have, ofcourse I use the latest firefox 3.6.2. This site http://aruljohn.com/ when used with firefox shows correctly the version and type of browser I use.

    I use XP

    Please help...
     
    Last edited: 2010/04/01
  2. 2010/04/07
    KylerIE8Team

    KylerIE8Team Inactive

    Joined:
    2010/03/05
    Messages:
    3
    Likes Received:
    0
    The first step would be to run IE8 with 'Compatibility View' enabled. You can do this by going up into the Tools menu and selecting "Compatibility View." Does this help?

    -Kyler
    IE Outreach Team
     

  3. to hide this advert.

  4. 2010/04/07
    melvinjn

    melvinjn Inactive Thread Starter

    Joined:
    2009/04/27
    Messages:
    32
    Likes Received:
    0
    Tried that, but no change
     
  5. 2010/04/08
    TonyT

    TonyT SuperGeek Staff

    Joined:
    2002/01/18
    Messages:
    9,072
    Likes Received:
    400
    The site contains this hidden code that only gets displayed under certain circumstances as defines in a javascript.
    Code:
    <div id= "platformwarning" class= "hide ">
        <span>Your current Web browser may not display this site properly.</span>
        <p>
            TrendSecure performs best when opened with the latest version of either        <a href=" " target= "_blank ">Microsoft Internet Explorer</a>
            or 
            <a href= "http://www.mozilla.com/en-US/firefox/" target= "_blank ">Mozilla Firefox</a>
            . 
        </p>    
    
    </div>
    <!-- end platform warning -->
    The javascript:
    Code:
    	if (flag) {
    		// blacklist browser, redirect
    		var minimum = sup_browsers[flag];
    		if (BrowserDetect.version < minimum) {
    			if (root) window.location =  "ts_overview.htm ";
    			else window.location =  "../ts_overview.htm ";
    		}
    	} else { // no matches, gray list browser
    		// check cookie for seen_warning
    		if (!document.cookie || readCookie( "seen_warning ") !=  "y ") { // haven't seen warning
    			// show platformwarning
    			var warning = document.getElementById( "platformwarning ");
    			warning.className =  "show ";
    			// set flag
    			createCookie( "seen_warning ", "y ",0);
    		}
    The site detects your browser & sets a cookie containing your browser name and your platform (your operating system). It then checks the cookie to see if your browser is or isn't "flagged ". If a user's browser is a "blacklisted browser" he gets redirected to the page ts_overview.htm & if user's browser is "graylisted" he gets shown the Platform Warning message.

    In your case, your browser is probably correctly detected and you are shown the Platform Warning message. Your browser is flagged as "graylisted" most likely due to some addons you have installed in IE8: Accelerators, Antivirus addons, Privacy filters, Toolbars, etc. etc.

    I view the site in IE8 and don't get any warnings.
     
  6. 2010/04/09
    melvinjn

    melvinjn Inactive Thread Starter

    Joined:
    2009/04/27
    Messages:
    32
    Likes Received:
    0
    Hi KylerIE8Team

    Thanks for your reply Looked again into your suggestion. I dont get that message again, but after I click on Launch Transaction guard button on that website. A new popup window opens and on that page I get the message " You need to use Microsoft Internet Explorer version 6.0 or higher or Firefox to use Trendsecure "
     
  7. 2010/04/09
    melvinjn

    melvinjn Inactive Thread Starter

    Joined:
    2009/04/27
    Messages:
    32
    Likes Received:
    0
    Hi TonyT

    Thanks for your time, certainly appreciate. I tried to disable all addons manually and that message disappeared but again when I click on the launch transaction guard button on the website. I get the message " You need to use Microsoft Internet Explorer version 6.0 or higher or Firefox to use Trendsecure" . I could not understand where the problem actually lies. Please let me know if there are any special settings for security on the security tab in IE8, that could be blocking
     
    Last edited: 2010/04/09
  8. 2010/04/09
    TonyT

    TonyT SuperGeek Staff

    Joined:
    2002/01/18
    Messages:
    9,072
    Likes Received:
    400
    This is the javascript file and its error messages used by the Transaction Guard download page:

    Code:
    /* Version=<<2.1.0.1033>> */
    /////////////////////////////////////////////////////////////////////////////////
    //
    // Error message for activeX download and applet page.
    //
    /////////////////////////////////////////////////////////////////////////////////
    
    var HCMS_UNSUPPORT_VERSION_IE= "You need to use Microsoft Internet Explorer version 6.0 or higher to use TrendSecure. ";
    var HCMS_UNSUPPORT_VERSION_FIREFOX= "You need to use Firefox 1.5 to use TrendSecure. ";
    var HCMS_UNSUPPORT_BROWSER= "You need to use Microsoft Internet Explorer version 6.0 or higher or Firefox to use TrendSecure. ";
    var HCMS_UNSUPPORT_OS= "Only Windows 2000, Windows XP, and Windows Vista can currently support TrendSecure applications. ";
    var HCMS_APPLET_FAILURE= "TrendSecure applet cannot be launched successfully. ";
    var HCMS_JRE_FAILURE= "Java Plugin 1.5 or higher is not found. Please install Java Runtime Environment 1.5 or higher to use TrendSecure. ";
    var HCMS_CONFIRM_LIC= "Are you sure to decline the license agreement? \n\nClick Cancel to go back to the license agreement page. ";
    If using Firefox you need Java installed. Get it here.
    If use IE you need to allow ActiveX Controls for the Trend site.

    An Internet Security program such as Norton, AVG, etc may be blocking the Trend site functionality, or some other IE security setting. Try accessing IE Internet Options and set to the defaults, then restart IE and try the Trend site again.
     
  9. 2010/04/11
    melvinjn

    melvinjn Inactive Thread Starter

    Joined:
    2009/04/27
    Messages:
    32
    Likes Received:
    0
    Thanks for your reply.
    I have enabled activeX controls as well as set IE8 security to defaults. I use Eset Smart Security and I had disabled the firewall as well as the antivirus and antispyware and tried but did not get through.
    Next I had enabled the interactive mode of Eset Security since it was automatic and saw each action the browser was taking and each time it asked my permission I allowed it and asked it to remember and tried that twice but still I got the same message on the popup window after I clicked the "Launch Transaction Guard" button.
    I get it working well in firefox, no problems. Also I got the latest Java update 19 installed.
    The reason I use internet explorer, is that the Transaction guard works well on it.
     
  10. 2010/04/17
    melvinjn

    melvinjn Inactive Thread Starter

    Joined:
    2009/04/27
    Messages:
    32
    Likes Received:
    0
    Hi TonyT

    Guess what, got the IE8 fixed properly.
    The life saver website : http://www.enhanceie.com/ua.aspx

    I changed the User Agent for IE8 and that did the trick !!
     
  11. 2010/04/17
    PeteC

    PeteC SuperGeek Staff

    Joined:
    2002/05/10
    Messages:
    28,896
    Likes Received:
    389
    Please mark this thread as 'Resolved', see .....
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.