I am hoping this is the proper place for this post.
I was following this tutorial http://blogs.iis.net/robert_mcmurray/archive/2009/04/20/creating-a-read-only-membership-provider-for-phpbb-2-0-users.aspx
I added the dll to the GAC and added it in the trusted providers, but when I try visiting the site for testing purposes I get a runtime error.
If I go into IIS Manager and click on .NET Roles or Management I get an error saying:
This feature cannot be used becaused the default provider type could not be determined to check whether it is a trusted provider.
You can use this feature only when the default provider is a trusted provider. If you are a server administrator, you can make a provider a trusted provider by adding the provider type to the trusted providers list in the Administrator.config file. The provider has to be strongly typed and added to the GAC.
Like I said I have added it to the GAC and my trusted provider list in the Administrator.config file is like the following:
<trustedProviders allowUntrustedProviders="false">
<add type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<add type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<add type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<add type="ReadOnlyPhpBBProvider.PhpBBRoleProvider, ReadOnlyPhpBBProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=2a82024dfaaad1e4" />
<add type="ReadOnlyPhpBBProvider.PhpBBMembershipProvider, ReadOnlyPhpBBProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=2a82024dfaaad1e4" />
</trustedProviders>
What do I need to do in order to get this to work? Am I missing something?