Hello
I am trying to install a site on a remote host. After confirming that asp.net.1.1 is enabled and that the start page should be default.aspx.
I changed the config file to the appropriate settings for the remote server and remote newly created database etc.,
Altered the DotNetNuke.vbproj.webinfo and the DotNetNuke.sln file from:
<Web URLPath = "http://localhost/DdotNetNuke/DotNetNuke.vbproj" />
To:
"http://www.mysite.com/a2zdom/DotNetNuke.vbproj"
I uploaded the files and after I keyed in the site URL in the address bar I got this error message:
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
What does this mean and how should I rectify it, when I have installed on a local machine I have not been required to alter a page default.
I thought that it would automatically open with default.aspx on a remote installation if the iis has been adjusted accordingly as I was assured that this is the case.
I would appreciate any suggestions.
Thanks
Lynn