Hey guys,
I have downloaded DotNetNuke and I am currently trying to install it on my web hotel (hosted by www.unoeuro.com). I am following a guide hosted on bestwebsites.co.nz but even though it is a nice guide, I am experiencing some problems (check out the guide at http://www.bestwebsites.co.nz/dotnetnuke/how-to-install-dotnetnuke-on-a-hosted-server/). I have uploaded all the files through FTP and I have configured the web.config file. But I keep getting this error message:
Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
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>
|
This is the connection string in my web.config file:
<connectionStrings>
<!-- Connection String for SQL Server 2005 Express
<add
name="SiteSqlServer"
connectionString="Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|Database.mdf;"
providerName="System.Data.SqlClient" /> -->
<!-- Connection String for SQL Server 2000/2005 -->
<add
name="SiteSqlServer"
connectionString="Server=sonic.worldispnetwork.com;Database=Koebman_DotNetNuke;uid=Koebman_DotNetNuke;pwd=*****;"
providerName="System.Data.SqlClient" />
</connectionStrings>
I have also updated this string:
<add key="SiteSqlServer" value="Server=sonic.worldispnetwork.com;Database=Koebman_DotNetNuke;uid=Koebman_DotNetNuke;pwd=*****;"/>
I think I have entered the right information. Do you guys know what could be the problem?
I hope you can help me. Thank you in advance!