Quantcast
Channel: Internet Explorer 8, 9, 10, 11 forum
Viewing all 10469 articles
Browse latest View live

In IE9, how to reference XML document from JS after XSL processing instruction runs

$
0
0

Hello,

Below is a modified version of the example here: msdn.microsoft.com/en-us/library/ms757058(v=vs.85).aspx.
It demonstrates functionality that is very similar to a legacy site I am currently supporting.

The difference is that in my example, I am not using data islands. Instead I am using a Processing Instructions to transform the initial xml document and then I am attempting to use Javascript to transform the document again after the initial render.

The problem is that in IE9 Standards mode there doesn't appear to be any access to the initial xml or xsl document from Javascript, after the content has been transformed to HTML.

This example will however work in Compatibility View where I can still access document.XMLDocument and document.XSLDocument.

Q1. In IE9 Standards Mode, is there any way to access the XML/XSL documents that produce a HTML page after it is rendered?

Q2. Can anyone confirm that support for document.XMLDocument and document.XSLDocument went away with support for XML Data Islands in IE9?

Thanks in advance

book_catalog.xml

<?xml version="1.0"?><?xml-stylesheet href="book_catalog.xsl" type="text/xsl"?><catalog><book id="bk101"><title>XML Developer's Guide</title><author>Gambardella, Matthew</author><genre>Computer</genre><price>44.95</price><publish_date>2000-10-01</publish_date>      <description>An in-depth look at creating applications with XML.</description></book><book id="bk102"><title>Midnight Rain</title><author>Ralls, Kim</author><genre>Fantasy</genre><price>5.95</price><publish_date>2000-12-16</publish_date><description>A former architect battles corporate zombies, an evil sorceress, and her own childhood to become queen of the world.</description></book><book id="bk103"><title>Maeve Ascendant</title><author>Corets, Eva</author><genre>Fantasy</genre><price>5.95</price><publish_date>2000-11-17</publish_date><description>After the collapse of a nanotechnology society in England, the young survivors lay the foundation for a new society.</description></book><book id="bk104"><title>Oberon's Legacy</title><author>Corets, Eva</author><genre>Fantasy</genre><price>5.95</price><publish_date>2001-03-10</publish_date><description>In post-apocalypse England, the mysterious agent known only as Oberon helps to create a new life for the inhabitants of London. Sequel to Maeve Ascendant.</description></book><book id="bk105"><title>The Sundered Grail</title><author>Corets, Eva</author><genre>Fantasy</genre><price>5.95</price><publish_date>2001-09-10</publish_date><description>The two daughters of Maeve, half-sisters, battle one another for control of England. Sequel to Oberon's Legacy.</description></book><book id="bk106"><title>Lover Birds</title><author>Randall, Cynthia</author><genre>Romance</genre><price>4.95</price><publish_date>2000-09-02</publish_date><description>When Carla meets Paul at an ornithology conference, tempers fly as feathers get ruffled.</description></book><book id="bk107"><title>Splish Splash</title><author>Thurman, Paula</author><genre>Romance</genre><price>4.95</price><publish_date>2000-11-02</publish_date><description>A deep sea diver finds true love twenty thousand leagues beneath the sea.</description></book><book id="bk108"><title>Creepy Crawlies</title><author>Knorr, Stefan</author>      <genre>Horror</genre><price>4.95</price><publish_date>2000-12-06</publish_date><description>An anthology of horror stories about roaches, centipedes, scorpions  and other insects.</description></book><book id="bk109"><title>Paradox Lost</title><author>Kress, Peter</author><genre>Science Fiction</genre><price>6.95</price><publish_date>2000-11-02</publish_date><description>After an inadvertant trip through a Heisenberg Uncertainty Device, James Salway discovers the problems of being quantum.</description></book><book id="bk110"><title>Microsoft .NET: The Programming Bible</title><author>O'Brien, Tim</author><genre>Computer</genre><price>36.95</price><publish_date>2000-12-09</publish_date><description>Microsoft's .NET initiative is explored in detail in this deep programmer's reference.</description></book><book id="bk111"><title>MSXML3: A Comprehensive Guide</title><author>O'Brien, Tim</author><genre>Computer</genre><price>36.95</price><publish_date>2000-12-01</publish_date><description>The Microsoft MSXML3 parser is covered in detail, with attention to XML DOM interfaces, XSLT processing, SAX and more.</description></book><book id="bk112"><title>Visual Studio 7: A Comprehensive Guide</title><author>Galos, Mike</author><genre>Computer</genre><price>49.95</price><publish_date>2001-04-16</publish_date><description>Microsoft Visual Studio 7 is explored in depth, looking at how Visual Basic, Visual C++, C#, and ASP+ are integrated into a comprehensive development environment.</description></book>   </catalog>
book_catalog.xsl
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        xmlns:msxsl="urn:schemas-microsoft-com:xslt"
        version="1.0"><xsl:output method="html" version="4.0" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/><xsl:param name="selected_genre" select="'all'"/><xsl:template match="/"><HTML><HEAD><TITLE>Transform Demo</TITLE><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /><STYLE>
    .catalog_genre_head {background-color:darkGreen;font-size:24pt;color:white;font-family:Impact;}
    .catalog_head {background-color:green;font-size:18pt;color:white;font-family:Impact;}
    .catalog_row0 {background-color:lightGreen;}
    .catalog_row1 {background-color:white;}
    .catalog_row_end {background-color:darkGreen;}</STYLE><SCRIPT language="Javascript">
var processorCache=null;

function loadSource(sourceObj){
	var xmlDoc=new ActiveXObject("Msxml2.FreeThreadedDOMDocument.6.0");
	xmlDoc.async=false;
	xmlDoc.loadXML(sourceObj.xml);
    return xmlDoc;
}

function getProcessor(transformObj){
    if (processorCache==null){
        var xslDoc=new ActiveXObject("Msxml2.FreeThreadedDOMDocument.6.0");
        var xslTemplate=new ActiveXObject("Msxml2.XSLTemplate.6.0");
        xslDoc.async=false;
        xslDoc.loadXML(transformObj.xml);
        xslTemplate.stylesheet = xslDoc;
        xslProcessor=xslTemplate.createProcessor();
        processorCache=xslProcessor;
    }
    else {
        xslProcessor=processorCache;
    }
    return xslProcessor;
}

function transformData(srcDoc,processor){
    processor.input=srcDoc;
    processor.transform();
    return processor.output;
}

function showGenre(genre){
    var srcDoc=loadSource(document.XMLDocument);
    var processor=getProcessor(document.XSLDocument);
    processor.addParameter("selected_genre",genre);
    var txt=transformData(srcDoc,processor);
    document.body.innerHTML = txt;
}</SCRIPT></HEAD><BODY><H1>Scootney Press Book Catalog</H1><P>Select a genre to see all books in that genre:</P><div><form method="post" action="#">
			Genre:<select name="genre" value="{$selected_genre}" onchange="showGenre(this.value)"><option value="all"><xsl:if test="$selected_genre='all'"><xsl:attribute name="selected">Selected</xsl:attribute></xsl:if>All</option><option value="Computer"><xsl:if test="$selected_genre='Computer'"><xsl:attribute name="selected">Selected</xsl:attribute></xsl:if>Computer</option><option value="Fantasy"><xsl:if test="$selected_genre='Fantasy'"><xsl:attribute name="selected">Selected</xsl:attribute></xsl:if>Fantasy</option><option value="Horror"><xsl:if test="$selected_genre='Horror'"><xsl:attribute name="selected">Selected</xsl:attribute></xsl:if>Horror</option><option value="Romance"><xsl:if test="$selected_genre='Romance'"><xsl:attribute name="selected">Selected</xsl:attribute></xsl:if>Romance</option><option value="Science Fiction"><xsl:if test="$selected_genre='Science Fiction'"><xsl:attribute name="selected">Selected</xsl:attribute></xsl:if>Science Fiction</option></select></form><br/><xsl:apply-templates select="catalog"/></div></BODY></HTML>		</xsl:template><xsl:template match="catalog"><table class="catalog_table"><xsl:apply-templates select="book[($selected_genre='all') or ($selected_genre=./genre)]"><xsl:sort select="title"/></xsl:apply-templates></table></xsl:template><xsl:template match="book"><xsl:if test="position()=1"><tr class="catalog_genre_head"><td colspan="6"><xsl:choose><xsl:when test="$selected_genre='all'">
		All Genres</xsl:when><xsl:otherwise>
		Genre: <xsl:value-of select="genre"/></xsl:otherwise></xsl:choose></td></tr>            <tr class="catalog_head"><td>#</td><td>Title</td><td>Author</td><td>Publication Date</td><td>Description</td><xsl:if test="$selected_genre='all'"><td>Genre</td></xsl:if></tr></xsl:if><tr class="catalog_row{position() mod 2}"><td><xsl:value-of select="position()"/></td><td class="catalog_cell"><xsl:value-of select="title"/></td><td class="catalog_cell"><xsl:value-of select="author"/></td><td class="catalog_cell"><xsl:value-of select="publish_date"/></td>                    <td class="catalog_cell"><xsl:value-of select="description"/></td><xsl:if test="$selected_genre='all'"><td class="catalog_cell"><xsl:value-of select="genre"/></td></xsl:if></tr><xsl:if test="position()=last()"><tr class="catalog_row_end"><td colspan="6"> </td></tr></xsl:if></xsl:template></xsl:stylesheet>


IE 10 Installation Fails - Neutral package installation failed

$
0
0

IE 10 will not install in Windows 7 64 bit SP1

I go past the prompt that says "restarting programs".  Then the installation fails.  The updates are all up to the minute.

Please help me install IE 10

Here is the log.  Same error in three tries.  It gives the IE10 Failed to install message.

00:00.000: Started: 2013/02/27 (Y/M/D) 16:34:02.472 (local)
00:00.016: Time Format in this log: MM:ss.mmm (minutes:seconds.milliseconds)
00:00.016: Command line: "C:\Users\Pats Workstation\Downloads\IE10-Windows6.1-x64-en-us.exe"
00:00.031: INFO:    Setup installer for Internet Explorer: 10.0.9200.16521
00:00.047: INFO:    Previous version of Internet Explorer: 9.0.8112.16464
00:00.047: INFO:    Checking if iexplore.exe's current version is between 10.0.8100.0...
00:00.062: INFO:    ...and 10.1.0.0...
00:00.062: INFO:    Maximum version on which to run IEAK branding is: 10.1.0.0...
00:00.062: INFO:    iexplore.exe version check success. Install can proceed.
00:00.078: INFO:    Operating System: Windows Workstation: 6.1.7601 (Service Pack 1)
00:00.094: INFO:    Trying to extract ID: SetupDownloadList.txt (0) as "SetupDownloadList.txt"
00:00.109: INFO:    Trying to extract ID: HardwareBlockingList.xml (0) as "HardwareBlockingList.xml"
00:00.109: INFO:    Trying to extract ID: 7006 (0) as "IE10-neutral.Extracted.cab"
00:00.499: INFO:    Trying to extract ID: 5501 (1033) as "Spelling_en.msu"
00:00.515: INFO:    Extracted Spelling dictionary for en to C:\Windows\TEMP\IE1A275.tmp\Spelling_en.msu.
00:00.515: INFO:    Trying to extract ID: 5502 (1033) as "Hyphenation_en.msu"
00:00.530: INFO:    Extracted Hyphenation dictionary for en to C:\Windows\TEMP\IE1A275.tmp\Hyphenation_en.msu.
00:00.546: INFO:    Trying to extract ID: 7128 (1033) as "IE10-support.cab"
00:01.388: INFO:    PauseOrResumeAUThread: Successfully paused Automatic Updates.
01:01.371: INFO:    The no reboot policy and supplemental files failed to download correctly. Default installation files will be used. Wait return value was 0x00000102 (258) [The wait operation timed out. ]
01:01.402: INFO:    Launched program to check hardware: "C:\Windows\TEMP\IE1A275.tmp\IE10-SUPPORT\IEXPLORE.EXE" /CheckHardware "C:\Windows\TEMP\IE1A275.tmp\HardwareBlockingList.xml"
01:01.496: INFO:    Graphics Device Information: NVIDIA Quadro 600
01:01.496: INFO:    Hardware support check succeeded. Installation will continue.
01:01.496: INFO:    Windows 7 operating system detected.
01:01.511: INFO:    Service pack major: 1
01:01.511: INFO:    Service pack minor: 0
01:01.511: INFO:    Service pack name:  Service Pack 1
01:01.527: INFO:    Version Check for (KB2670838) of C:\Windows\System32\api-ms-win-downlevel-user32-l1-1-0.dll: 6.2.9200.16492 >= 6.2.9200.16492 (True)
01:01.527: INFO:    Version Check for (KB2639308) of C:\Windows\System32\Ntoskrnl.exe: 6.1.7601.18044 >= 6.1.7601.17727 (True)
01:01.542: INFO:    Version Check for (KB2533623) of C:\Windows\System32\api-ms-win-security-base-l1-1-0.dll: 6.1.7601.18015 >= 6.1.7601.17617 (True)
01:01.558: INFO:    Version Check for (KB2731771) of C:\Windows\System32\kernel32.dll: 6.1.7601.18015 >= 6.1.7601.17932 (True)
01:01.558: INFO:    Checking for correct version of C:\Windows\Fonts\segoeui.ttf.
01:01.574: INFO:    Version Check for (KB2786081) of C:\Windows\System32\taskhost.exe: 6.1.7601.18010 >= 6.1.7601.18010 (True)
01:03.414: INFO:    Waiting for 0 prerequisite downloads.
01:03.414: INFO:    The neutral pack was not successfully downloaded from the internet. Installation will continue using the extracted package.
01:03.446: INFO:    No reboot logic message NrApiStart(0), lParam=0x031b1838 returned 0x00000000.
01:04.085: INFO:    No reboot logic message NrApiScan(1), lParam=0x00000001 returned 0x00000000.
01:04.085: INFO:    No reboot logic message NrApiStartInstall(4), lParam=0x00000001 returned 0x00000014.
01:04.101: INFO:    Installing with the extracted package. C:\Windows\TEMP\IE1A275.tmp\IE10-neutral.Extracted.cab
01:04.116: INFO:    Launched package installation: C:\Windows\SysNative\dism.exe /online /add-package /packagepath:C:\Windows\TEMP\IE1A275.tmp\IE10-neutral.Extracted.cab /quiet /norestart
01:18.796: INFO:    Process exit code 0x000036B3 (14003) [The referenced assembly is not installed on your system. ]
01:18.796: ERROR:   Neutral package installation failed (exit code = 0x000036b3 (14003)).
01:18.796: INFO:    No reboot logic message NrApiInstallDone(7), lParam=0x00009c59 returned 0x00000000.
01:18.812: INFO:    No reboot logic message NrApiStartFinish(11), lParam=0x00000000 returned 0x00000000.
01:18.812: INFO:    No reboot logic message NrApiFinish(12), lParam=0x00000000 returned 0x00000016.
01:18.812: INFO:    Waiting for Active Setup to complete.
01:18.812: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
01:23.819: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
01:28.827: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
01:33.850: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
01:38.873: INFO:    Waiting for Active Setup to complete. ({89820200-ECBD-11cf-8B85-00AA005B4383})
01:43.912: INFO:    PauseOrResumeAUThread: Successfully resumed Automatic Updates.
02:36.578: INFO:    Link clicked, opening URL in new window:'http://go.microsoft.com/fwlink/?LinkId=272316'
06:31.594: INFO:    Setup exit code: 0x00009C59 (40025) - The neutral cab failed to install.
06:31.625: INFO:    Cleaning up temporary files in: C:\Windows\TEMP\IE1A275.tmp
06:31.656: INFO:    Unable to remove directory C:\Windows\TEMP\IE1A275.tmp, marking for deletion on reboot.
06:31.672: INFO:    Released Internet Explorer Installer Mutex

IE9: Internet explorer has blocked this website from displaying content with security certificate errors

$
0
0

Every computer in our company is getting "Internet explorer has blocked this website from displaying content with security certificate errors" on almost every website we visit.  As previosuly suggested: I have tried running IE in safe mode and reset security settings; my clock is in sync with the PDC which is in turn with time.windows.com.

Please advise as to why this error comes up when visiting almost every web site (for example, every article on Infoworld.com) on every computer in the domain?  We are running Win7 with SP1 / IE 9.08112.16421 with update version 9.0.27 (KB2953522).

IE 8 - Win 7 Issue with SSRS - Rendering Problem

$
0
0

Hi,

Existing SSRS report is working fine in IE 6 & 7, but not working correctly with IE8 Windows 7 Envrionment.

We have a Table in our body content of SSRS and we have placed ImageBox in the cells. This ImageBox will display images based on the condition. Its something like a status chart.

In IE8, the images are enlarged and are not fitting into the required size.

IE11 Windows 8.1 and Javascript problems.

$
0
0

I have purchased some internet shop software and it works fine on Chrome and Firefox.

On IE11 if I input a user name and password on pressing return it just clears out the username.

Also if I click on add an item to the basket the basket screen opens but with nothing added and the price is £0.

The website uses javascript.

If I use the same website on my Windows 7 laptop and IE11 it works fine.

It looks like a problem with my Windows 8.1 pro 64 bit and javascript.

Does anyone have a solution ?


n.Wright


Save Compatibility View Settings in Desktop IE11

$
0
0

{Surface Pro - Win 8.1 - IE11}

I cannot get IE11 to save domains in compatibility view. In a session I can designate a domain to display in compatibility mode. During the session, everything is fine. When I close the browser and then go in the next day, all the domains that were in the list are gone. The list is completely blank.

I go through the process again, but after closing out and then loading the browser again they're gone.

Is there a setting I'm missing?

Thanks,

Stathy

IE 11 Browser Language

$
0
0

I am trying to take screenshots of a website that we have translated into Spanish.  All the content displays in the correct language, but I cannot figure out how to make the "File Upload" button show as it would for someone using a Spanish version of Windows.

I have:

  • Upgraded to Windows 7 Ultimate.
  • Set my language under Regional/Language to Spanish.
  • Changed the Language in IE's Internet Options - Language Preference to Spanish.
  • Downgraded to IE 10, and re-installed IE 11 from a Spanish language link: http://windows.microsoft.com/es-MX/internet-explorer/download-ie .
  • Reset IE settings, including deleting personal settings.

After all of these attempts:

  • Windows start menu and other OS elements appear to be in Spanish.
  • Other applications seem to have detected my language and react appropriately (eg, GIMP).
  • BUT, Internet Explorer itself remains entirely in English, apart from setting my homepage to the Spanish version of MSN.

Please help!  I just want to see Internet Explorer the way somebody would that is using it in Mexico, and I was expecting that the upgrade to Ultimate and setting my language to Spanish would have done that.  Thanks.



How to fix IE script errors

$
0
0

I am continuously getting script errors....sometimes after every key stroke I type (this just started happening about a week ago).

I've gone to the Advanced tab of the Internet Properties and found that the "Disable script debugging" box is checked....and the "Display a notification about every script error" is unchecked.....which are the recommendations I've read about on how to fix this problem.  Since these boxes are already checked/unchecked appropriately, what is causing these script error problems.....and how can I get rid of them?

Thanks

 

 


GPO for IE

$
0
0

All,

We have IE 8, 9 and we control them using GPO. 

Now we have started  IE 10, 11 for new machines. But OS is still Windows 7. And we will have all 4 versions of IE for some more time.

1. Do we need a new GPO for IE 10, 11 or can the existing one be used?

2.  IF we create a new GPO for IE 10, 11, do we migrate all settings from IE 8,9 ?

How can this be done and how can we manage IE 10, 11 on Windows 7 with RSAT tools?

Many Thanks!!!

When I open Internet Explorer 10 I can't get the favorites bar to show favorites.

$
0
0
When I open Internet Explorer 10 I can't get the favorites bar to show my favorites.  I've gone to "view" > toolbars and clicked on favorites bar but it won't show my favorites in the favorite bar.   This problem only started a couple of days ago.  Before then the favorites bar always showed with my favorite.

IE 10 and 11 can't display Google Chrome's landing page correctly in RTL languages (Hebrew, Arabic, Persian)

$
0
0
Hi,

I’ve been trying to download Google Chrome from the official Hebrew version website (https://www.google.co.il/chrome/)
Using IE11 on Windows 7 SP1 from different computer setups, but every time the blue download box-link simply didn’t show up. I’ve checked this with browserstack.com and found out it’s not a local issue, and also occurs on other RTL languages such as Arabic and Persian on Windows 7 with IE10 and IE11:

http://www.browserstack.com/screenshots/61734a52b54acd1937fca193142000acf4e2666d

http://www.browserstack.com/screenshots/01d33b5dd01ce94cd9999cc58948a3e22f332a97

http://www.browserstack.com/screenshots/ae01fad47a03ba6c94b450958aa60455e18d2eeb

Waiting for a reply
Thank you, 

Elad

Better JSON visualization

$
0
0

Dear IE Team,

have you noted how many Microsoft speakers use google chrome during presentations?

I'm not against the use of other products, but as a Microsoft fan I'd like the numbers will be more on favour of IE than Chrome.

Maybe there are dozen of reasons to do prefer Chrome, but IMHO the first reason is the ugly way IE manage JSON http response.

So my question is:

WHY YOU STILL PRETEND I NEED TO SAVE A JSON RESPONSE AS A FILE AND THEN OPEN IT TO SEE IT ???

C'mon, be smart and add JSON (plus a good visualizer) so that, as Chrome does, I can receve and see the JSON response directly on my IE browser page.

Thanks in advance for your kind attention.

Mobile access to IIS webserver using DNS resolva in DNS public server.....

$
0
0

Hi, everyone.

Would you help me to solve my issue below?

I want to use mobile device like "iPhone" and "iPad" to access Web server including IIS at DMZ and using public DNS server.

Usually I should set public DNS server's IP address and domain suffix for resolva function onto "iPhone" and "iPad". However if I do not want to enter these information onto above devices, should I register the domain suffix information onto the public DNS server or not?

My environment as follows,

Mobile devices use WiFi network.

Servers are located at DMZ of my company, this is general environment.

Web server: IIS7/IE8/Windows Server2008R2 SP1

Database server:SQL Server2008R2 SP2/Windows Server2008R2 SP1

Above Web server and Database server are located at same network address.

If you have any information, let me know...any information helpful for me.

Also instruction of how to set the domain information onto the public DNS server is welcome.

Thank lots.

Deploy / installation IE10 messages in ie10_main.log

$
0
0

We are deploying Internet Explorer 10 to different machines thru gpo. On some machines installation runs fine but on some machines it looks like it is running at computer startup (it takes a while before login screen appears) but it isn't installed. Lookin in de %windir%\ie10_main.log there are some errors like:

waiting for 6 prerequisite downloads
download completed starting installation of 6 prerequisites
error downloading prerequisite file (kb2670838)

failed to resume automatic updates.

After logging in on the machine ie8 is still installed not ie10.

The ie10 msi file which is deployed thru computer group policy is made with IEAK10 on a windows 7 machine with IE10 instaled. In IEAK it is synchronised so all updates are in the msi (i think). Installation goes wrong on downloading installing updates it looks like but why is he downloading updates while it is in the msi file?

What can i do about this?


freddie

Why would a hyperlink not work?

$
0
0
I have a client with a very strange problem which I can replicate on several
computers other than theirs. IE will open the website. You can close IE reopen
and go back to the site. However if you click a link to website within a Word
2010 document or Excel spreadsheet IE gives an error that the page can not be
displayed. If you then close IE and Word, reopen IE and try to go to the site it
says page can not be displayed. If you wait apporx 30 min and try again IE will
display the page. But if you reopen Word or Excel, click the link you get the
same error again and IE will not open the page. This issue only happen with this
particular site, no others. The other interesting part is once one computer on
the network errors out no computer on the same network can access the site
either for approx. 30 min.

The same link works fine in Outlook. All
computers are using Windows 7 64.

IE11 on Win7 Pro 64bit Still Appears in Windows Update and Cannot Uninstall

$
0
0

I have Win7 Pro 64bit 12GB RAM 2.67GHz Intel Xeon. Windows Update installed IE11 but after install continues to show in Windows Update. Tried to uninstall, failed. Check the IE11 log file, don't see anything unusual.

Update history shows IE11 64bit installed successfully.

It seems to work ok but it's annoying it still appears in the update list and it won't uninstall and revert to IE10.

Checked the troubleshooting IE from MS, nothing was of any use.


Michael MacGregor, Senior SQL Server DBA

MSHTML.DLL Crash

$
0
0

Hi,

I have in my company an application developed by my own company. Its a .NET application.

Under some circunstances, it crashes with the following event in event viewer:

Name of the module with errors: mshtml.dll, version: 8.0.7601.17514, timestamp: 0x4ce7b8f3
Exception code: 0xc0000005
Error offset: 0x002ac98c
Process ID with errors: 0x1b60
Module with error path: C:\Windows\SysWOW64\mshtml.dll

I'm getting crazy with this error. Disable DEP doesn't solve the problem. But if the application is run with a user who is member of local Administrators group, it doesn't crash. If the user is not member of Local Administrators group, it always crashes in the same point.

I have googled, and found some updates to apply, but I have the latest patches, and, I think if it were a problem of patches, the problem would happen both with normal users and local administrator users.

Any clue on what to research?

The system is Windows 2008 R2 SP1 and Internet Explorer 8.0.7601.17514

Thanks in advance.

Group Policy not populating Compatibility View List in IE 11

$
0
0
I am currently a domain admin in a large, multi domain controller environment. Our AD was much out of date (2000 mix mode) and we are currently updating it in steps (2003 Native at this point)

At the same time other technicians have started patch testing, moving us from IE10 to IE11. However, there seems to be one major catch so far. Users require access to a website that will only run properly in compatibility mode.  This was true in IE10 and is true in IE11.

As such, this website was set as a mandatory compatibility mode page in GPO (Administrative Tempaltes\Windows Components\Internet Explorer\Compatibility View\Use Policy List of Internet Explorer 7 sites). This has worked fine for 8, 9, 10 for this site and others. 

However, it was not showing in compatibility mode in IE 11 it is showing in normal mode and breaks. The policy is applying normally and the list is accurate in rsop.msc. If the site is added to compatibility mode locally inside IE11 it works fine. 

Our patch testers are all seeing the same problem. However, I have been unable to establish if it is just this site or others are affected (mostly it's old billing and intranet sites I don't have access to).

I'm not sure what the disconnect is. 

Printing certain web pages in IE 11 cause 49.4a.04 error on HP printer

$
0
0

There is a bug that happens with the machines running IE 11 when they try to print from the following website:http://www.corporationwiki.com/Texas/Sherman/n-1-achord-ministries/34978978.aspx

The drivers and firmware have been updated and different version of the driver were used in testing. The issue is recreated 2 out of 5 tests, and requires the print spooler to be cleared and the printer to be restarted. From my understanding this issue happens with multiple pages randomly across our domain depending on the pages being printed. Is there a known patch for this? Is downgrading to IE 10 really the only option?

Windows 7 ( up to date )
HP m602  ( up to date)

Tested on another domain and confirmed via IRC as a bug.

Gettting to my Oracle Enterprise manager intranet site

$
0
0

Option for 'continue to this website (not recommended)' is missing in IE11 and I cannot get to my Oracle Enterprise manager on https internal server name port 1158 slash em

Viewing all 10469 articles
Browse latest View live




Latest Images