Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have build a .net4.5 ASP.NET MVC4 web app which works fine locally (IIS Express & dev server) but once i deploy it to my web server it throws the 403 error. I have installed .Net 4.5RC on the server and even tried the aspnet_regiis -i bit that everyone recommended for their issues with previous versions of MVC/.Net but it did not help.

Any ideas?

EDIT: More info about the situation. The server is 32bit and I have 4 other MVC3 applications that work fine. It is just my MVC4 app that is not working.

share|improve this question
I ran into this same problem when I created a new asp.net 4.5 Web Forms app. It worked fine locally (IIS 7.5), but when deployed to test server (also IIS 7.5) then most all of my bundled & minified javascript and css files were failing to load with 404 Not Found. The answer below about runAllManagedModulesForAllRequests solved the problem for me! – ClearCloud8 Oct 2 '12 at 16:26

4 Answers

up vote 59 down vote accepted

Try

<system.webServer>
   <modules runAllManagedModulesForAllRequests="true"/> 
 </system.webServer>

Via

http://serverfault.com/questions/405395/unable-to-get-anything-except-403-from-a-net-4-5-website

share|improve this answer
2  
Wow!!!! that did it. Thank you very much!!!!!! – mithun_daa Jul 11 '12 at 15:54
1  
Had that in place, did everything, and still only MVC 4 sites work. There has to be some other trick that needs to be in place for this to work. – Maxim V. Pavlov Aug 17 '12 at 10:52
This. Tried all the other stock solutions with no joy but this was the one that sorted the problem. – Julia Hayward Jan 2 at 9:39

Error 403.14 is the HTTP error code for not being allowed to list the contents of a directory. Please be sure that

  1. You have setup the website as an application in IIS
  2. You have .NET 4.5 installed on the server
  3. You have set the application pool to run the proper version of the .NET framework (ie. it is not set to .NET 2.0
  4. You are using the integrated pipeline on your application pool
  5. .NET 4.5 is actually registered in IIS. Please see this post for a similar issue/resolution

Usually, a and d are the biggest issues surrounding MVC deployments to IIS

share|improve this answer
1. I have not setup the website as an application. 2. I have .net 4.5 installed, 3.had my app pool targeting the correct framework. 4. My pool was set to use classic, changed it to Integrated but didn't help. 5. I am pretty sure 4.5 is registered. – mithun_daa Jul 11 '12 at 13:29
@mithun_daa - If you have not setup your website as an application, its pretty easy -> right click the virtual directory/website and Convert To Application (or add Application, terminology escapes me at the moment) – Tommy Jul 11 '12 at 13:32
Is this a MVC4 specific thing? Cause I have never set up my MVC3 projects as Applications and they work just fine. – mithun_daa Jul 11 '12 at 13:52
Could be how you are deploying then -> but any .NET web application must be set as an application in IIS. However, if you are just putting these under the default website, then it is running under the default website application. Make sure that the application pool of the default website is configured correctly (.NET 4/integrated). When you create a virtual directory/virtual website in IIS, you have the option of setting it to its own application as well. – Tommy Jul 11 '12 at 14:23
I probably confused you but none of the sites are under the Default Web site. I right click "Sites" in IIS7 and choose "Add Web Site". That is how i have been doing. – mithun_daa Jul 11 '12 at 14:32

the one i see more frequently recently is IIS and allowing 32bit applications to run

Is this what you have tried. otherwise we need more information about production and dev server versions

share|improve this answer
I am sorry but i did not follow what you meant. This is a 32bit server. I have updated my post to add more info. – mithun_daa Jul 11 '12 at 13:20
Ahhh ... Are they in separate app_pools? – Hurricanepkt Jul 11 '12 at 13:58
Yes, infact each of my sites have their own app pools. – mithun_daa Jul 11 '12 at 14:07

I have a bit different issue, on server 2012 somehow i forgot to enable asp.net 4.5 so if you have this issue, double check that you enable it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.