Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to deploy ASP.NET MVC3 Web App for the first time and after uploading files and making up the database I had problems with displaying sites... I was redirected to "Page not found'. After adding to web config I'm getting the following error:

Server Error

500 - Internal server error.

There is a problem with the resource you are looking for, and it cannot be displayed.

What I need to do now?


After Aristos' changes I get this message:

The page cannot be displayed because an internal server error has occurred.

This is my website: http://pm.studentlive.pl/

Moreover: the http://pm.studentlive.pl/Home/Info page is working...

share|improve this question
1  
Make sure you have the wildcard mapping in place for MVC application on the directory... – sajoshi Mar 22 '11 at 4:11

5 Answers

First you need to enable and see detailed errors of your web messages because this is a general message with out giving information's on whats really happening for security reasons.

With the detailed error you can locate the real issue here.

Also if you can run the browser on the server you get detail on the error because server recognize that you are local and show to you, or if you can read the log of the server using the Event Viewer you also see the detailes of your error.

on iis6

<configuration>
    <system.web>
        <customErrors mode="Off"/>
        <compilation debug="true"/>
    </system.web> 
</configuration>

on iis7

<configuration>
    <system.webServer>
        <httpErrors errorMode="Detailed" />
        <asp scriptErrorSentToBrowser="true"/>
    </system.webServer>
    <system.web>
        <customErrors mode="Off"/>
        <compilation debug="true"/>
    </system.web>
</configuration>

Note: You can avoid the Debug=true, you only need to close the custom errors for while, and get the detailed error page.

reference: enabling windows custom error messaging on godaddy help articles.

Also can help how to enable the detailed error messages from iis.

share|improve this answer

I was pulling my hair out over this issue. Making sure the following entry was in the root web.config fixed it for me:

<configuration>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
  </system.webServer>
</configuration>

Remember that you have to add this to the existing xml elements, if they're already there. You can't just add at the end of the file because you can't have multiple copies of any element.

share|improve this answer

In my case, I put a mistake on my web.config file. The application key somehow was put under tag. But I wonder why it doesn't display configuration error. The error 500 is too generic to investigating the problem.

share|improve this answer

My first attempt to publish and then run a very simple site serving only html produced "The page cannot be displayed because an internal server error has occurred."

Problem: I had the site set to .Net 3.5 in Visual Studio (right click web site project -> Property Pages -> Build), but had the Web Site in Azure configured as .Net 4.0. Oops! I changed it to 3.5 in Azure and it worked.

share|improve this answer

finally solved this 500 Internal server error when deploying MVC 3.0 application on godaddy.ocm shared hosting

somehow there were discrepancies on the version of DLLs referenced and version mentioned in web.config.

Tried all the options mentioned in various forum, Nothing helped, although everyone suggested same kind of fix, but somehow didnt work in my scenario. finally after banging my head for 2 days. i decided to deleted all dll reference and delete web.cofig( make a local copy) from project and let application throw error and then add dll one by one making copy to local=true. after all the dlls are added. i created a new asp.net mvc application and copied the web.config of new app to my actual app. so my actual app now has a new web.config, then i copied the connectionstring and other reference from the local copy of web.config that i saved .

just compiled the application and published to local folder and FTP the published folder to goDaddy

It worked and finally my problem was solved

Hope this will help people and they dont waste 2 days like me,

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.