I knew from the beginning that I should not sign up with Godady but it is what it is now and I need to install Dotnuke http://www.dotnetnuke.com/ http://www.debtsconsolidationloans.org/nuke/Install/InstallWizard.aspx As you see here there is an error but I am trying to set web.config file to show the error <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration> I have done that but still I can not see further details about the error. Any help will be appreciated.
If you cannot turn error reporting on via the config file you can add an error handling element to the global.asax file so that if an error is detected it emails you or saves a texted file down with the issue details.
Thanks for the advice, but I can not see this file in dotnuke directory, shall I create it? What is the code the does this?
you can read more about it here. http://www.easerve.com/developer/tutorials/asp-net-tutorials-global-error-handling.aspx you should try to upload your code again the problem could be missing files.
Try: <configuration> <system.web> <customErrors mode="Off"/> <compilation debug="true" strict="false" explicit="true" /> </system.web> </configuration> That should give you the details of the error you are getting. In addition, seriously consider getting a host that focuses on .net. They might be a couple bucks a month more expensive than Godaddy but it is worth it. Cheers.