I am running a Asp .Net website under IIS 7.5 - win 7, IIS 8.5 - win 8.1. I have 2 development machines witch run it normally.
Steps to recreate the environment After a fresh install of Win 7 on another machine. Installed all updates
Added IIS Feature with
- .Net extensebility
- Asp
- CGI
- ISAPI Extensions
- ISAPI Filters
Registered .Net framework 4.0 with IIS(aspnet_regiis -i/aspnet_regiis -ir)
Added correct application pool to website.
Set the path to bin folder of the project.
in web.config set:
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
Aded IIS/IIS_USRS read-Write rights on the specific folder
*Note: I do not need Directory Browsing enabled
- The Problem
- On all new OS Installs, no mater what win version (7, 8, 8.1, or 10 Preview) I got the same error ****HTTP Error 403.14 - Forbidden The Web server is configured to not list the contents of this directory.****
If anyone can help because I am running out of places to look for the problem.
*Note - Same setting work fine on 3 development machines with win 7 and server 2008. If I deploy a Publish it works fine. (Containing .aspx pages)
Thank You