8.6 CME gui not working on Internet explorer but displays on other browsers

The strangest thing is happening I cannot access the CME 8.6 GUI on internet explorer but it works on firefox and chrome.  It just suddenly started to happen no changes were made.  When I open the gui on internet explorer after I sign in it just says View Window but never gets passed that.  I have a test router with the same version and files and it works on internet explorer.  I compared the files on both routers and both have the same files.  I'm stumped any help would be greatly appreciated.

Is there anything in version 15.1 that can cause the issue I'm having? I have ip http server and no ip http secure-server in my config is there anything with that I have to add?  I just downgraded back to 12.4 and it works after a hard reset.  I want to attribute the problem to version advip 15.1.  I have the gui files from 15.1 loaded on flash.  

Similar Messages

  • Images made into links (in divs) not working in Internet Explorer but works in Firefox. help!

    Hey guys,
    The text links are fine, but the image links don't work in internet explorer. Anyone know why this is happening?
    Sample code:
    <a href="facebook"><div class="fb"><img src="Facebook.png" /></div></a>
    The link links to another HTML in my site

    If you anticipate having more questions, a great self help is to validate your code, that is, test your code against the rules set for the particular DOCTYPE you are using.
    http://validator.w3.org/
    "you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
    In this case it would have pointed out that you can't put a <div> inside an <a>.
    Best wishes,
    Adninjastrator

  • Image does not appear in Internet Explorer but displays in Firefox

    Hi All,
    I have an image in my page in the header section.
    The problem is that the image displays in Firefox but does not display in Internet Explorer.
    Thanks in advance.
    Best Regards
    Arif Khadas
    Application Express 4.0.1.00.03
    Edited by: Arif Khadas on Feb 13, 2011 2:29 PM

    Hi Jari,
    Thanks for the reply.
    This is the code that is in the Region Source of the Header Section :
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr width="100%" align="left" valign="top">
      <td align="right" valign="top">
       <a href="http://www.bridgesinfotech.com/"
        <img src="#APP_IMAGES#header.jpg" alt="Bridges Information Technology" WIDTH="1000" HEIGHT="125">
       </a>
      </td>
    </tr>
    </table>

  • Slices NOT working in Internet Explorer -- but work every other browser!

    I've spent all day trying to figure this out and hope someone experienced here can help me out.
    I've created a left menu for my website using slices (in photoshop cs2). Everything seems to work fine - I upload the date folder and html file to my server, etc. However, when I load that page in IE (any version), it loads really slowly and then shows "x" boxes for the last several slice images.
    It works perfectly in every other browser (FF, Opera, Safari, etc). What could the cause possibly be? I've just reformatted my computer so I doubt it's internal. Strangely, it works fine on some computers with IE, but not others.
    Any help most appreciated!
    thanks

    My wild guess will be a browser cache issue. Hold down the Shift key while clicking the Refresh button and see if that helps. If it doesn't we'll definitely need a link.

  • IWeb Page Navigational Links not working with Internet Explorer 7

    I'm hoping someone can help me out here? My wife created her 1st website using iWeb. I am testing the sites functionality before we publish it. All the pages and links work fine on Firefox and Safari for windows. However, the page navigational links are not working on Internet Explorer 7. All I see is a dot to the left side of where the page links should be. When I start the site in IE7 I get an Active X script warning and I am asked if I want to allow the script to run; to which I reply yes. After I allow the Active X script the dot to the left side of where the page links should be disappears, but the links do not appear.
    Is there anyway to resolve this? Most of the members of her club have Windows based PCs and are using IE7.
    Message was edited by: cviz821

    Yes, Javascript is running on IE7 and other java script applets appear to be working with the exception of the Navbar script.
    It would be great if my wife's friends used a "real" browser, unfortunately 70% of the people on the web use IE7, so this is a real concern if we can't get this to work. I'v seen other iWeb site on IE7 that seem to function fine, so I'm not sure what the issue is here.
    Message was edited by: cviz821

  • Lessons: Extend step 5 of 7 not working on Internet Explorer 11

    Hello I using Edge Animation CC Trial, I starting to learn directly from application. Everything is good until I found out Lesson: Extend step 5 of 7 not working on Internet Explorer 11 (Lasted version on Windows 8.1). The Playback/Stop trigger not work for Stage. But when I try use Chrome, it working well.

    Oh and just to show how things look like with the problem, it's like this:
    And this is what it's supposed to look like:
    So yeah, the whole space just turns empty - I can still click on blank spaces and it leads me to the appropriate links (though I have no clue what links I am actually clicking on in IE9, it only shows up for google chrome
    I'm looking forward to constructive replies~ Hopefully someone would see this soon

  • My h:commandButton is not working on Internet Explorer not FF

    Can anyone help to findout what could make h:commandButton not working in Internet explorer and not in any other browser like Safari, Netscape and Fire Fox.
    My application is having this problem currently with IE only. I have also tried calling the action of the form from javascript.
    To make it more clear, the page doesn't even get to the validation phase, so wrong entries on the form don't get validate and page not submitted.
    help please
    Michael E.

    Thanks for the response,
    I discovered that it was one of the modal child windows generated by JS thats the cause. But what should the interference between the child window and the JSF parent page.
    Michael

  • Why does my Web Handler work with Internet Explorer, but not with Firefox

    I am trying to develop a web page that uses the Simile Timeline (http://code.google.com/p/simile-widgets/wiki/Timeline) with data from SQL Server.
    In initial testing of my timeline I tested it with Example.xml, a static XML file in the correct format to be event data. I wrote the following in the appropriate place within mytimeline's Javascript: -
    var WebHandler = "Example.xml"
    tl.loadXML(WebHandler, function (xml, url) { eventSourceFamily.loadXML(xml, url) });
    This worked fine with both Firefox and Internet Explorer. I then changed the assignment to
    var WebHandler = "GDBTimeline.ashx?Type=Family&Userid=" + getControlValue("input", "hdnUser");
    so that invoked a web handler that could look up the SQL database and return the XML that I wanted, and wrote this web handler.
    This works perfectly with Internet Explorer, but with FireFox the timeline band is blank. Yet when I examine the http traffic with Fiddler2 (http://www.fiddler2.com/fiddler2/) I see that with either browser there is a response from URL
    /GDB_pages/GDBTimeline.ashx?Type=Family&Userid=robertb
    that returns the XML that it is supposed to.
    I have previously used web handlers with Firefox before, with no problems. The Fiddler results conclusively show that the web handler is invoked, and returns the appropriate XML, and this XML is identical to the XML from the static test with Example.xml.
    Where do I start looking for answers? I don't even know if this is a Simile problem, a Firefox problem, or an ASP.NET problem.
    Thank you, Robert.

    Problem solved. The issue: Content Type was not correct.
    Visual Studio creates the web handler with dummy code like this: -
    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
    context.Response.ContentType = "text/plain"
    context.Response.Write("Hello World")
    End Sub
    I wrote a database query that set a string variable to the XML I wanted: -
    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
    Dim Outstring as string
    ' my logic to fill Outstring with XML
    context.Response.ContentType = "text/plain"
    context.Response.Write(Outstring)
    End Sub
    This works with Internet Explorer. However it's not strictly correct: to make it work with other browsers as well,
    context.Response.ContentType = "text/plain"
    should be
    context.Response.ContentType = "text/xml"
    It now works with IE, FF, and Chrome, and presumably all others.

  • Adobe Flash Player not working in Internet Explorer 9

    I installed the latest version of Adobe Flash Player (version 11.7.700.169) and Adobe Flash Player stopped working in Internet Explorer 9. ActiveX filtering is disabled and the Adobe Flash Player add-on is enabled in IE 9. When I try to load the Web page for www.youtube.com, I get a blank screen. Google Chrome and Mozilla Firefox work fine - both can display the YouTube Web page. Is there a fix for this?
    Message was edited by: Pleiades777. I am running Windows Vista (32 bit).

    What exactly means "not working"?
    Check also
    https://forums.adobe.com/thread/885448
    https://forums.adobe.com/thread/867968

  • Google talk works in internet explorer but why not in firefox

    I have used google talk for a long time. it suddendly does not work in google chrome. i installed firefox just today. it does not let me use google talk. BUT
    it works in internet explorer. I would prefer to use firefox.
    I had reinstalled the plugin after a download message.
    it is a new install.
    It does not work.
    Your volunteering is greatly appreciated.[sort of the nurses of the media world]

    Hi, Google Talk was due to be turned off at the end of 2014, so that's probably why it isn't working - ''''On October 30th, 2014, Google announced on their Apps Updates blog that "The Google Talk app for Windows will continue to work for approximately two months before being turned off", signalling the end of the Google Talk application by the end of 2014'''' ''Quote from Wikipedia'' - [http://en.wikipedia.org/wiki/Google_Talk full text here.]

  • KeyListener not working In Internet Explorer

    I made a small game
    Play it here
    It works fine in Firefox but the KeyListener doesn't work in Internet Explorer.
    I include the applet with this code:
    <!--[if !IE]>-->
    <object classid="java:Shotgun.class"
            type="application/x-java-applet"
            id="ShotgunApplet" >
    <!--<![endif]-->
    <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
            id="ShotgunAppletIE" >
             <param name="code" value="Shotgun" />
    </object>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->But also tried this:
    <applet id='ShotgunApplet' code='Shotgun.class'></applet>
    The full source code is available from here
    Thanks in advance,
    Frederik Vanderstraeten

    --- Solved ---
    Had to remove the e.consume(); in mousePressed()

  • Epson artison 810 wireless printing works with internet explorer, but not mozilla

    New printer. I can print web pages with internet explorer, but when I use mozilla nothing happens.

    See this: <br />
    [http://kb.mozillazine.org/Problems_printing_web_pages]

  • Webpage does not show in Internet Explorer but does show in all other browsers?

    I have created a webpage, www.nqms.co.uk, it does not show on Internet Explorer.  I have tried to troubleshoot via the net and have used a CSS check program etc. but it still won't appear.  Any help would be gratefully received.

    Add the closing --> comment tag to your css section before the closing </style> tag (see below)
    .style3 {font-size: 8pt}
    -->
    </style>

  • My verticle Spry menu will not work in Internet Explorer

    I know a lot of people have posted about similar issues, and I've researched multiple "solutions" on multiple forums for something that will work, but nothing has solved the problem so far.
    Here is a link to the prototype homepage: http://www.abrasivesales.com/indexnew.html
    Everything looks great on my mac when opened in Firefox or Safari, however when opened on Internet Explorer on a PC, the menu ceases to be verticle, instead extending horizontally past the end of the screen.  Also, the menu items adopt a white background color, and none of the submenu items will appear when their parent menu item is rolled over.
    PLEASE HELP....this issue has kept me from launching the site for a week now, and my superiors are wondering why this problem is taking me longer than it did to build the homepage in the first place, so I'd love to look like less of an idiot.
    I assuming this is a CSS issue, so I've posted my CSS code below:
    @charset "UTF-8";
    /* SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
        margin: 0;
        padding: ;
        list-style-type: none;
        font-size: 12px;
        cursor: default;
        font-weight: bold;
        font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
        left: 0px;
        top: 0px;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 150px;
        margin: 0;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        margin: 0 0 0 100%;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        left: -1000em;
        top: 0;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
        left: 0;
        width: 165px;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
        width: auto;
    #masterContainer #container #sidebar #sideNav2 li ul li {
        top: -400px;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
        border: 0
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
        border: 0
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        padding: 2px 3px;
        color: #333;
        text-decoration: none;
        font-family: "Comic Sans MS", cursive;
        font-size: 13.5px;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
        background-color: #33C;
        color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
        background-color: #1A6AF4;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;
    #masterContainer #container #sidebar #sideNav2 {
    #masterContainer #container #sidebar li ul li  {
        background-color: #F4EC9A;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarVertical li.MenuBarItemIE
    display: inline;
    float: left;

    I solved one of my own problems.  It turns out I still had a setting for width set to "auto" instead of a pixel amount.  So now my menu displays normally and my submenus are no longer invisible.
    One one tab, "Products", I set the top at -430px, which internet explorer seems to ignore.  I'm so close!  I'll search for the answer but any help is greatly appreciated.

  • Adobe Flash Player does not work in Internet Explorer 10 on Microsoft Windows 8

    I understand that Google Chrome and IE10 have their own automatic update system, however, any site requiring me to use adobe flash player to view videos does not work no matter what I try. I have:
    Used the desktop version of IE versus that Start version and both provide me with the same message.
    Tried uninstalling and then reinstalling but I receive an error message stating that Flash player is already installed and I know that it is not because I have unistalled it. I received this message: Installer encountered an error: 0x80248000
    I even used Ccleaner to hopefully remove any files that were left behind.
    I have gone to Tools, then compatibility settings, unchecked automatic update list from Microsoft. there are no websites on that list t remove.
    I have double-checked that the flash player add-on is enabled.
    I have also checked security settings and enabled Scripting for Java
    I have also made sure that I disabled ActiveXFiltering.
    Basically, I have tried to use Adobe's websites to figure out the issue at the following link: http://helpx.adobe.com/flash-player/kb/flash-player-issues-windows-8.html#main-pars_header _1
            None of the tips fixed my issue.
    I have Windows 8, recently upgraded from Windows 7. I have a 64-bit machine, when I tried, just in case I was wrong, to install 32-bit, I receive an error. I would greatly appreciate any help anyone may provide. Is there a customer service number by any chance for software we have not paid for but instead it comes with our computers? I really need to be able to use discussions and watch Teachertube, youtube, and other videos to complete grad schools assignments.
    Please help me!
    I

    It sounds like you might have additional software on your system that is interfering with Flash Player.  You mentioned that this is happening for both Chrome and Internet Explorer, correct?  I've got a similar system (Win 8 upgraded from 7, 64bit) and I've never had any problems.
    I'd recommend trying to temporarily disable any security, antivirus, firewall software that you have running.  You might also want to try starting in Safe Mode with Networking enabled (http://windows.microsoft.com/en-US/windows-8/windows-startup-settings-including-safe-mode) to see if Flash works once all utilities and services have been disabled.
    Finally, do either of these links play video back?
    HTML5     video     
    Non-HTML5 video
    Thanks,
    Chris

Maybe you are looking for