Is there a way that I can run a ASP.NET MVC Project on godaddy.com shared web hosting?
feedback
|
protected by Brad Larson Sep 26 '11 at 19:10
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
As a developer who has deployed an MVC project on GoDaddy's ASP.NET shared hosting, I can tell you with certainty that you can do this, and it's quite easy.
It really should be that easy. Please leave a comment if you have any issues. | |||||||||||||||
feedback
|
|
As long as they support ASP.NET 3.5, you can follow the instructions here to bin deploy your MVC application. | |||
|
feedback
|
|
Can't you just set the MVC references to copy local (bin deployment)? Or are you having other troubles like with their trust levels. Simplest solution is to switch hosting providers :) | |||
|
feedback
|
|
Please check other SO thread which gives solution about it... You can check it live at http://mvc.tristonsoftware.com/ Here we are using Godaddy Shared account. I have followed steps given by PashaMelnik. One more thing... Please change You also need to enable set Copy Local to true in System.Web.MVC ( can be found in your References section ) Properties. | |||
|
feedback
|
|
I have spend quite some time on this. It does not work, read my article here: | |||
|
feedback
|
|
I had an issue because when I logged into FTP, it was actually taking me to a subfolder instead of the root. Make sure your files are copied to the root and delete the default godaddy welcome page. Also select Copy Local = True (References | Properties) for:
| |||
|
feedback
|
|
With the release of ASP.NET MVC3 they have made the \bin deployment of MVC projects easier - as long as your host supports ASP.NET 4.0. The host no longer has to explicitly install ASP.NET MVC. See this blog post by Scott Guthrie for more information, Approach 2: http://weblogs.asp.net/scottgu/archive/2011/01/18/running-an-asp-net-mvc-3-app-on-a-web-server-that-doesn-t-have-asp-net-mvc-3-installed.aspx | |||
|
feedback
|
|
yes it is possible to run MVC inside shared hosting. please refer this article of mine; | |||
|
feedback
|
|
I was just researching the same thing and ran across this article at GD: "Deploying MVC3 Applications" | |||
|
feedback
|