views:

562

answers:

3

Trying to configure cc.net on windows vista but keep getting errors. Now getting the following error

HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.

Can anyone plz tell which MIME type to add to get it work

+2  A: 

First go to C:\Windows\Microsoft.NET\Framework\v2.0.50727 via the command line and run aspnet_regiis.exe /i. Next check the ISAPI and CGI Registrations under IIS for the site and make sure the ASP.NET 2.0.x is there and is enabled. I've seen ASP.NET 2.0.x be listed even though it wasn't installed properly and I've also seen the ASP.NET 2.0.x web server extension be disabled, both cause a similar issue to what you're encountering.

wegrata
A: 

I did the first step but after running the command it says IIS is not installed on th emachine. But IIS is installed and showing the localhost page.

Plz also elaborate how to check ISAPI and CGI registrations. and how to check webserver extension is disabled.

Will be highly grateful

Regards sam

When you open the IIS 7 console and select your site from the tree view on the left, on the right section of the screen where you can configure the site, there will be a item there called ISAPI and CGI Registrations just double click on that and it will show the web server extensions installed.
wegrata
also check this link for additional help http://groups.google.com/group/microsoft.public.dotnet.framework.aspnet/browse_thread/thread/70b3ac0a2d7c2342/2c068d639896c134?pli=1
wegrata
A: 

If you haven't gotten this yet (I see it's an old post) first do the aspnet_regiis.exe /i as recommended by wegrata, then

%systemroot%\system32\inetsrv\APPCMD.EXE migrate config "Default Web Site/ccnet"

Also, instead of doing the aspnet_regiis bit, you should be able to accomplish the same by turning on ASP.NET from Add/Remove windows components. This was what I had to do on Win 7

Jim Leonardo