This post is really only some notes for me on how to use Webalizer on Windows to parse IIS log files (w3c format). If you have any questions about this please DO NOT ASK ME. Download and extract the Windows binaries Download and unzip/untar the latest GeoDB to the same directory…
Tag: IIS
How to disable legacy/unsafe SSL algorithms in Microsoft IIS
One of our servers was recently audited for a certain certification and unfortunately we failed the initial test. For the most part we’re running a basic install of IIS on a Windows Server 2003 R2 Standard x64. To pass the test we had to disable the older algorithms for the…
Unrecognized attribute ‘targetFramework’
I just installed the 4.0 framework on two servers and then had VS 2010 upgrade a test site from 3.5 to 4.0. When I tried accessing the site in my browser I got the error message Unrecognized attribute ‘targetFramework’. The solution appears to be simple, just right-click the site in…
Solving “The default script language specified for this application is invalid”
This was a pain in the butt. Like everyone else I tried registering things, unregistering things, deleting “MBSchema.bin.00000000h” and resetting permissions. None of that worked, or at least none of the entries people talked about. But maybe my problem was from running IIS on a 64-bit machine under 32-bit mode….
True ASP.Net (and IIS) 404 errors
UPDATE: I should found out that in ASP.Net 3.5 the <customErrors> section in web.config now supports the attribute redirectMode which default to ResponseRedirect but can be changed to ResponseRewrite. This will force the proper HTTP status codes to come through for errors. So I launched a new site porting it…
Map file extension to ASP.Net
I’m converting a site from static HTML to dynamic ASP.Net but I don’t want to rename every page or worry about dropping in pages in the search engines. So I decided to just map HTML files to the ASP.Net processor. I could have sworn that I had done this before…