I'm having problems setting up EPiServer and Relate+ with windows authentication. What happens is that none of the group prefixes get deleted when inserted into the db. all the prefixes are kept.. very strange.
To get windows athentication and Relate+ working together you need to use the EPiServerCommonIntegrationMembershipProvider so that episerver afterwards syncronizes all the groups the the common tables to get the community module to work properly.
Hi!
I'm having problems setting up EPiServer and Relate+ with windows authentication. What happens is that none of the group prefixes get deleted when inserted into the db. all the prefixes are kept.. very strange.
To get windows athentication and Relate+ working together you need to use the EPiServerCommonIntegrationMembershipProvider so that episerver afterwards syncronizes all the groups the the common tables to get the community module to work properly.
Any idées on why it's now working?
My setup is as follows
<roleManagerenabled="true"defaultProvider="WindowsRoleProvider"cacheRolesInCookie="true">
<providers>
<clear />
<add name="WindowsRoleProvider" applicationName="Lanstrafiken" type="EPiServer.Security.WindowsRoleProvider, EPiServer" />
</providers>
</roleManager>
<membership defaultProvider="EPiServerCommonIntegrationMembershipProvider" userIsOnlineTimeWindow="10">
<providers>
<clear />
<add name="WindowsMembershipProvider" type="EPiServer.Security.WindowsMembershipProvider, EPiServer" deletePrefix="BUILTIN\,WEB01\,THEDOMAIN\" searchByEmail="true" />
<add name="EPiServerCommonIntegrationMembershipProvider" applicationName="Lanstrafiken" type="EPiServer.Common.Web.Authorization.IntegrationMembershipProvider, EPiServer.Common.Web.Authorization" provider="WindowsMembershipProvider" roleToSynchronize1="*" />
</providers>
</membership>