Role Manager feature has not been enabled

When I try and add a Delegated Administrator the following message is presented:
 
The Role Manager feature has not been enabled.
 
But I have activated all Features...
Have more questions? Submit a request

1 Comments

  • 0
    Avatar
    Matthew McBride
    This error occurs when the roleManager tag is missing the enable attribute or if the enableRoles attribute is set to false. To enable the role management features of the role provider the enable attribute must be set to true.
     
    Example Role Manager Tag
     
    <roleManager defaultProvider="AspNetSqlRoleProvider" enabled="true">
        <providers>
            <add name="AspNetSqlRoleProvider"
                type=".. Role Manager Type ..."
                connectionStringName="ConnStringName"
                applicationName="/" />
        </providers>
    </roleManager>

     

    Jeremy Luerkens
    Manager, Software Production
    SharePoint Solutions
Please sign in to leave a comment.