11

I have installed the Tracing feature and enabled failed request tracing for a website, to debug a Classic ASP website. The XML logs are created upon occurring errors, however when I open them in IE, instead of getting the nice blue interface I get a massive amount of code/text.

Why doesn't the interface load and how can I fix it?

Kiquenet
  • 143
  • 8
pilau
  • 281
  • 1
  • 3
  • 8

6 Answers6

17

I had the same problem on a fresh install of Windows 2012. However, the freb.xsl file was present in the same folder as the event XML file.

To get it to show the 'nice interface' I had to add "about:internet" to the IE11 trusted sites list, as discussed here: http://forums.iis.net/p/1147605/1862016.aspx

Daz
  • 271
  • 2
  • 6
6

I found out I was missing the freb.xsl file, so I downloaded one from here (link at the bottom of the page): http://blogs.iis.net/bills/archive/2006/10/19/Making-Failed-Request-Tracing-More-Approachable.aspx

Hope someone will find this helpful. :)

pilau
  • 281
  • 1
  • 3
  • 8
6

If the freb.xsl file is missing from the directory that contains the log files, then the nice interface won't show. Rather than trying to find a website with the latest freb.xsl, I found on this page:

http://blogs.iis.net/davcox/archive/2007/10/05/recovering-freb-xsl-after-deleting-it.aspx

that if you just delete the directory that the xml files are being written to (likely something like C:\inetpub\logs\FailedReqLogFiles\W3SVC1), then IIS will automatically recreate the directory and write the freb.xsl file when it next creates the next log file.

Wesley Smith
  • 161
  • 1
  • 3
  • Just be careful to save off first whatever xml files might be in that directory you are going to delete, as they might have the very Failed Request Trace info you wanted to view. that's why I think the other answer focused on getting the xsl file. But for some folks, sure, your suggestion is a worthy solution as well. – charlie arehart Jul 18 '22 at 20:11
2

I got the failed request trace to display in IE (and it doesn't work on chrome) by pointing an IIS website at the folder and open it in IE - version 11 - from there.

Other things I tried before this was

  1. add about:internet to trusted sites
  2. to run in compatibility mode.

I am certain this has to do with security settings and there is probably an easier way of getting this to work without IIS. I go with the path of least resistance on this one.

sebix
  • 4,175
  • 2
  • 25
  • 45
BraveNewMath
  • 121
  • 3
0

For me the solution was to disable the Enhanced Protected Mode of Internet Explorer.

To do so go to...
IE menu → Tools → Internet Options → Advanced → Scroll down to section "Security" → Disable Checkbox "Enable Enhanced Protected Mode"

Make sure that you fully restart IE for this change to take effect.

Jpsy
  • 141
  • 5
0

Old post but this solution worked for me (thanks Pilau) I downloaded this file and copied to C:\inetpub\logs\FailedReqLogFiles\W3SVC2

expirat001
  • 101
  • 1