1

I created an MVC5 site and deployed to my dev machine IIS.
However I can't get past this error when I browse to the URL.
HTTP Error 403.14 - Forbidden

I tried implementing the settings in this thread, but I still get the same error.
ASP MVC in IIS 7 results in: HTTP Error 403.14 - Forbidden

My setup:
Publish Method: File System
From IIS 7.5 I added a new Web Site and pointed to my published folder location.
I created a new app pool and set it to 4.0 and managed pipeline is integrated(also tried classic).

What am I missing?

Community
  • 1
  • 1
John Doe
  • 3,053
  • 17
  • 48
  • 75
  • Can You add more screenshot of Your IIS Manager? and your IIS, what you've been activated at Control Panel "Programs and Features" application? – toha Aug 11 '16 at 04:39
  • If the error still occurs, may I team viewer your PC? (If my connection available) – toha Aug 11 '16 at 04:49
  • I can't for that would be a security violation. – John Doe Aug 11 '16 at 11:01

2 Answers2

2

Open CMD,

If you are in 32 bit OS, Run :

C:\windows\Microsoft.NET\Framework\v4.0.30319> aspnet_regiis.exe -i

If you are in 64 bit OS, Run :

C:\windows\Microsoft.NET\Framework64\v4.0.30319> aspnet_regiis.exe -i
toha
  • 5,095
  • 4
  • 40
  • 52
2

I had same error and fixed error as following:

1) Open command prompt (cmd) and write command as 'appwiz.cpl'
2) Open the menu "Turn Windows features on or off"
3) Internet Information Services/Application Development Features
4) And checked ASP.NET 3.5 and ASP.NET 4.6

IIS

Hope will work for you

cybernetic
  • 21
  • 2