Ok, ok. . . I found the problem, and it is a typo on DNN's part, not mine. The directions aren't as explicit as some would think. . .
By default, the SQLSERVER string is commented out, but the close comment "-->" is on another line return. I did not see it (like I said, long day). If you're using SQL2000 or 2003, comment the SQLEXPRESS line, and make sure that the other line is not commented out.
<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=(local);Database=DotNetNuke;uid=;pwd=;"
providerName="System.Data.SqlClient" />
-->
</connectionStrings>
That was the problem and it works now. It may also be that I used Notepad, rather than something else as well.
I knew if I walked away for a while and came back, I would see something.
Thanks,
D
P.S. - And don't make fun of me.