vote up 24 vote down star
17

Is there a way that I can run a ASP.NET MVC Project on godaddy.com shared web hosting?

flag

73% accept rate
1  
Sounds like a job for... GoDaddy technical support! – Will Nov 5 '08 at 19:18

8 Answers

vote up 38 vote down check

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.

  1. First, make sure that you've gotten a GoDaddy windows hosting plan (they sell both Linux and Windows plans).
  2. Next, make sure that you've set the hosting account to use ASP 2.0/3.0/3.5 (this is enabled by default AFAIK -- but you need to make sure it's set to this if you've changed it in the past). You set this by clicking 'Manage Account' / Content / IIS Settings.
  3. Next, make sure your MVC project is set to copy the MVC .dll's to your bin directory. ASP.NET MVC (as of the beta) now puts these assemblies in the GAC by default. You'll need to change this for your project. Information on how to do this is on Phil Haack's website, here.
  4. Last, just publish your site and upload.

It really should be that easy. Please leave a comment if you have any issues.

link|flag
1  
I had to also upgrade to IIS 7 and turn on integrated pipeline (as opposed to classic) found here stackoverflow.com/questions/705229/… – TJB May 18 at 5:13
Thanks for the tip! – Dan Esparza May 18 at 5:25
vote up 7 vote down

As long as they support ASP.NET 3.5, you can follow the instructions here to bin deploy your MVC application.

link|flag
vote up 2 vote down

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 :)

link|flag
vote up 0 vote down

I did these instructions but now I have a routing problem. I played with the code in Global.asax but no luck. Did you guys have a problem like that?

link|flag
vote up 0 vote down

I as well am having the routing issue. I have tried most of the tricks that have been posted. Godaddy I know isn't the best, but I know and have seen mvc sites working there. My home page works, but any url that I go to out side of that doesn't get routed, such as my about page. It just says page not found. Any ideas are welcome please...

link|flag
vote up 0 vote down

Please check other SO thread which gives solution about it...

http://stackoverflow.com/questions/364637/asp-net-mvc-on-godaddy-not-working-not-primary-domain-deployment

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 <forms loginUrl="~/Account/LogOn" timeout="2880"/> in web.config to <forms loginUrl="~/Account.aspx/LogOn" timeout="2880"/> to reflect the above changes.

You also need to enable set Copy Local to true in System.Web.MVC ( can be found in your References section ) Properties.

link|flag
vote up 0 vote down

Dan -- thanks for that great answer. Worked like a charm and was quite easy, just as you said.

link|flag
vote up -2 vote down

Can you suggest another hosting provider?

link|flag
This belongs as a comment or an edit to your question, not as an answer. – Rich B Jan 26 at 20:53

Your Answer

Get an OpenID
or

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