I have an ssl web app with default and internet authentication providers. The default zone is setup to use windows authentication type. I've setup the internet zone to use forms. I'm using Active Directory for my provider. When I try to sign in with a site collection administrator, I get an access denied error that states "you are currently logged in as: user". It's hitting active directory and seeing I'm a legit user, but then it's saying I don't have rights for the site, even though I double/triple check that it's the site admin.
My googling skills are not sufficient for solving this one. Any suggestions?
In case I flubbed the web.config, here's what I have for the site and central administration:
<connectionStrings>
<add name="ADConnectionString"
connectionString="LDAP://000.000.00.0/DC=myDomain,DC=local"/>
</connectionStrings>
<membership defaultProvider="ADProvider">
<providers>
<add name="ADProvider"
type="System.Web.Security.ActiveDirectoryMembershipProvider,
System.Web, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="ADConnectionString"
connectionUsername="user" connectionPassword="password"
attributeMapUsername="SAMAccountName" />
</providers>
</membership>