Umbraco with MySQL on GoDaddy Windows Shared Hosting
I'm having some issues deploying a site that is running well locally. I deployed the application to my godaddy server but I keep on getting a 500 error page "Beware of Sharks" thing.
Have you tried to contact GoDaddy about this to hear what they're saying? As you probably know the error code is due to an internal server error, which could be caused by some buggy code but could also be because of some server related issues.
I had the same issue. It was the web.config file not bieng asp.net 4.0 compatable. Heres mine that fixed it:
<?xml version="1.0"?> <!-- Note: As an alternative to hand editing this file you can use the web admin tool to configure settings for your application. Use the Website->Asp.Net Configuration option in Visual Studio. A full list of settings and comments can be found in machine.config.comments usually located in \Windows\Microsoft.Net\Framework\v2.x\Config --> <configuration> <appSettings/> <connectionStrings> </connectionStrings> <system.web> <!-- Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. --> <compilation debug="true" targetFramework="4.0"> <assemblies> </assemblies> </compilation> <!-- The <authentication> section enables configuration of the security authentication mode used by ASP.NET to identify an incoming user. --> <authentication mode="Windows"/> <!-- The <customErrors> section enables configuration of what to do if/when an unhandled error occurs during the execution of a request. Specifically, it enables developers to configure html error pages to be displayed in place of a error stack trace. <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> <error statusCode="403" redirect="NoAccess.htm" /> <error statusCode="404" redirect="FileNotFound.htm" /> </customErrors> --> <pages controlRenderingCompatibilityVersion="3.5"/></system.web> <system.codedom> </system.codedom> <!-- The system.webServer section is required for running ASP.NET AJAX under Internet Information Services 7.0. It is not necessary for previous version of IIS. --> <system.webServer> </system.webServer> </configuration>
Umbraco with MySQL on GoDaddy Windows Shared Hosting
I'm having some issues deploying a site that is running well locally. I deployed the application to my godaddy server but I keep on getting a 500 error page "Beware of Sharks" thing.
I can't even see the errors...
This is my config file:
I've deployed an Umbraco 4.5.2 site in godaddy a few months ago, this should be very similar althought it's Umbraco version 4.6.1.
Can anyone help me with suggestions or opinions ? Or can anyone help me in removing the godaddy beware of sharks error page...?
Hi Diogo
Have you tried to contact GoDaddy about this to hear what they're saying? As you probably know the error code is due to an internal server error, which could be caused by some buggy code but could also be because of some server related issues.
/Jan
I had the same issue. It was the web.config file not bieng asp.net 4.0 compatable. Heres mine that fixed it:
I actually downgraded to Umbraco 4.5.2 in the end.. But it seems jcook's answer could work!
is working on a reply...