No this was a fresh install using the source files extracted to the directory and a new MSSql 2000 database.
After renaming release.config to web.config I made the following changes.
Commented out the Connection String for SQL Server 2005 Express in both the <Connection strings> and <appsettings> and uncommented the connection strings for Sql Server 2000 - 2005
<add name="SiteSqlServer" connectionString="Server=MSSqlServer;Database=DatabaseName;uid=UserID;pwd=Password;" providerName="System.Data.SqlClient" />
<add key="SiteSqlServer" value="Server=MSSqlServer
;Database=DatabaseName;uid=UserID;pwd=Password;" providerName="System.Data.SqlClient" />
Enabled impersonation by Un-commenting
<identity impersonate="true"/>
Disable changes in maximum file size by commenting out The tag
<httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="8192" requestLengthDiskThreshold="8192"/>
Changed the database owner In the section <data defaultProvider="SqlDataProvider">
databaseOwner="dbo -- TO -- databaseOwner="dbo123456789"
Then I entered the website using the /Install/Install.aspx and the installation was completed.
I have noticed several problems in the modules and am slowly trying to identify and repair them they seem to be more of the string in the wrong format than anything else.
Thanks Again