install failure on win2k3 iis6 (Upgrading from this version is not supported)
fresh windows 2003 install with all patches/updates on brand new dedicated hp DL380
Installed all the prerequisites ajax,dotnet2,iis6,asp.net extensions, regiis etc etc...
installed sql server 2005 express, created a new empty db and umbraco user with dbowner etc
unzipped umbraco4rc3 to e:\umbraco4 and set iis main home/root directory for that folder.
set security for css,bin,umbraco,appcode.bin,config,data,master pages,media etc...
started setup wizard, got to step 2 or 3 init the database, found as none, click next and BAM!
dead in the water:
[code]
Server Error in '/' Application.
--------------------------------------------------------------------------------
Upgrading from this version is not supported.
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.NotSupportedException: Upgrading from this version is not supported.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[NotSupportedException: Upgrading from this version is not supported.]
umbraco.DataLayer.SqlHelpers.SqlServer.SqlServerInstaller.Install() in d:\inetpub\wwwroot\ccnet\Source\Umbraco 3.1\umbraco\datalayer\SqlHelpers\SqlServer\SqlServerInstaller.cs:97
umbraco.presentation.install.steps.detect.installClick(Object sender, EventArgs e) in d:\inetpub\wwwroot\ccnet\Source\Umbraco 3.1\umbraco\presentation\install\steps\detect.ascx.cs:252
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +105
System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +107
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +7
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +11
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +33
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5102
[/code]
Nice...what is that supposed to mean? one cannot install this cms on windows server 2003?
Never mind. I figured it out.
I had to drop umbracouser and his schemas and make him owner of the database.
in sqlexpress select umbraco database and expand schemas, delete all schemas with the "umbracouser", open query window (while in umbraco database) and " exec spdrop 'umbracouser' then :
exec spchangedbowner 'umbracouser'
would be nice to have some install instructions for windows 2003
This user clearly received the wrong error message... Should make this more helpful. The datalayer mistakenly identifies the database as an old version.
install failure on win2k3 iis6 (Upgrading from this version is not supported)
fresh windows 2003 install with all patches/updates on brand new dedicated hp DL380
Installed all the prerequisites ajax,dotnet2,iis6,asp.net extensions, regiis etc etc...
installed sql server 2005 express, created a new empty db and umbraco user with dbowner etc
unzipped umbraco4rc3 to e:\umbraco4 and set iis main home/root directory for that folder.
set security for css,bin,umbraco,appcode.bin,config,data,master pages,media etc...
started setup wizard, got to step 2 or 3 init the database, found as none, click next and BAM!
dead in the water:
[code]
Server Error in '/' Application.
--------------------------------------------------------------------------------
Upgrading from this version is not supported.
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.NotSupportedException: Upgrading from this version is not supported.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[NotSupportedException: Upgrading from this version is not supported.]
umbraco.DataLayer.SqlHelpers.SqlServer.SqlServerInstaller.Install() in d:\inetpub\wwwroot\ccnet\Source\Umbraco 3.1\umbraco\datalayer\SqlHelpers\SqlServer\SqlServerInstaller.cs:97
umbraco.presentation.install.steps.detect.installClick(Object sender, EventArgs e) in d:\inetpub\wwwroot\ccnet\Source\Umbraco 3.1\umbraco\presentation\install\steps\detect.ascx.cs:252
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +105
System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +107
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +7
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +11
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +33
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5102
[/code]
Nice...what is that supposed to mean? one cannot install this cms on windows server 2003?
Never mind. I figured it out.
I had to drop umbracouser and his schemas and make him owner of the database.
in sqlexpress select umbraco database and expand schemas, delete all schemas with the "umbracouser", open query window (while in umbraco database) and " exec spdrop 'umbracouser' then :
exec spchangedbowner 'umbracouser'
would be nice to have some install instructions for windows 2003
This user clearly received the wrong error message... Should make this more helpful. The datalayer mistakenly identifies the database as an old version.
is working on a reply...