ErikVB - I think you're right, and I think I've now successfully loaded the backup into the database. At least, I got a successful return code. But I still can't load the site; IIS is complaining about my web.config file. Here's the error I get:
The requested page cannot be accessed because the related configuration data for the page is invalid.
Error Code 0x8007000d
Config Error Configuration file is not well-formed XML
Config File \\?\C:\Users\Karen E. Ivy\Documents\Web2 OSC Backup\wwwroot\web.config
It then lists these 2 lines, labeled Config Source:
267: </dotnetnuke>
268: </configuration>
These are the last 2 lines in web.config. I thought this meant that my web.config file didn't have either a <dotnetnuke> statement or a <configuration> statement; but it has both. It's based on the web.config file that drives my production site; I just changed the connection strings. Here's my original connection string:
<!-- Connection String for SQL Server 2000/2005-->
<add name="SiteSqlServer" connectionString="Server=70.85.90.120,2433;Database=oaklandsymphonychorus;uid=myuser;pwd=mypwd;" providerName="System.Data.SqlClient" />
</connectionStrings>
and appSettings connection string:
<add key="SiteSqlServer" value="Server=70.85.90.120,2433;Database=oaklandsymphonychorus;uid=myuser;pwd=mypwd;" />
And here are the same strings from the test file:
<!-- Connection String for SQL Server 2005 Express -->
<add
name="SiteSqlServer"
connectionString="Data Source=.\SQLEXPRESS;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|Database.mdf;uid=myuser;pwd=mypwd;"
providerName="System.Data.SqlClient" />
[ snip ]
<appSettings>
<!-- Connection String for SQL Server 2005 Express - kept for backwards compatability - legacy modules -->
<add key="SiteSqlServer" value="Data Source=.\SQLEXPRESS;Integrated Security=True;User Instance=True;Database=oaklandsymphonychorus;uid=oscuser;pwd=mozart;" />
Can you see anything that would cause it to say the configuration file is malformed? This is all I changed, honest!
[moderator edit: obfuscated credentials]