Hi!
I have a brand new W2K3 Server with IIS6 and .Net 2
After unzipping the Install-package for DNN 4 and folowing the install-doc I get this error:
Could not find file 'E:\Inetpub\DNN4\Providers\DataProviders\SqlDataProvider\DotNetNuke_template.mdf'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.IO.FileNotFoundException: Could not find file 'D:\Inetpub\DNN4\Providers\DataProviders\SqlDataProvider\DotNetNuke_template.mdf'.
It seams like the install-scripts is trying to copy a file that does not exist
[FileNotFoundException: Could not find file 'D:\Inetpub\DNN4\Providers\DataProviders\SqlDataProvider\DotNetNuke_template.mdf'.]
System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) +2014125
System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite) +488
DotNetNuke.Data.SqlDataProvider.GetProviderPath() +220
DotNetNuke.Common.Globals.GetUpgradeStatus() +335
DotNetNuke.Common.Global.CheckVersion() +187
DotNetNuke.Common.Global.Application_Start(Object Sender, EventArgs E) +316
And I also found an extra row in my web.config that's not in the install-doc:
<data
defaultProvider="SqlDataProvider">
<providers>
<clear/>
<add
name="SqlDataProvider"
type="DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider"
connectionStringName="SiteSqlServer"
upgradeConnectionString=""
providerPath="~\Providers\DataProviders\SqlDataProvider\"
objectQualifier="dnn_"
templateFile="DotNetNuke_template.mdf"
databaseOwner="dbo"/>
</providers>
</data>
It seams coneccted to the problem.
What to do?
I do not want to install the VSexpress on this production server.
Best regards
Pierre Marklund