I can get to the login screen, but I'm unable to log in as admin/admin or host/host. I do know how to turn off the lockout by directly modifying the database tables on the SQL server, so that isn't a problem. What gives?
Here are the changes to my web.config from the default:
<sectionGroup name="dotnetnuke">
<section name="data" requirePermission="false" ...
(Yes, I'm running DNN 3.2.2 under ASP.NET 2.0, as I'm doing this in a remote hosting environment.)
<appSettings>
<add key="SiteSqlServer" value="Server=DRACO;Database=DotNetNuke;uid=dnuser;pwd=XXX;" />
<data defaultProvider="SqlDataProvider">
<providers>
<clear />
<add name="SqlDataProvider"
type="DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider"
connectionStringName="SiteSqlServer"
upgradeConnectionString=""
providerPath="~\Providers\DataProviders\SqlDataProvider\"
objectQualifier="dnn_"
databaseOwner="dbo" />
</providers>
</data>
That's all I changed (other than implementing the required IIS settings from the installation pdf document).
Any ideas?
Damon