Let me clarify my last post, repairing the .NET framework is available via Control Panel add remove programs and choosing to change/remove the program, or re-running the installation program.
I was able to overcome the problem I had connecting to the DNN database and wanted to contribute my tiny bit to the community. After fixing the previous .NET framework problem, I encountered the following error message:
Error Installing DotNetNuke
Current Assembly Version: 04.04.01
ERROR: Could not connect to the database specified in connectionString for SqlDataProvider
The cause of the problem? SQL Server 2000 MSDE installs without prompting if the server should be configured for Windows Authentication mode or for both SQL Server and Windows Authentication mode. I was tired when I ran into this problem, blindly following the instructions on the installation video without realizing the video assumes the SQL Server authentication mode is mixed (i.e. Windows and SQL Server). My connection string referred to a SQL Server user, which could not log onto the SQL Server database because SQL Server would only accept Windows Authentications.
Fixing the problem depends on your environment. We have multiple SQL Servers running, so it was quite easy for me to run SQL Enterprise Manager and change the authentication mode configuration on this server to the desired mode. If I only had my PC at home and thus did not have any of the SQL management tools to ease doing this work, I would attempt to write a short T-SQL script and use the OSQL command line tool (included with SQL Server 2000 MSDE) to do it (assuming someone else within the DNN community has not already done the work of writing the script and was kind enough to post it for our use).
Now the hard part...deciding how best to structure the site and organize it's content...
Thanks, Dan.