Marfat
Marfat

Reputation: 143

How to configurate EPiServer 7.5 CMS authentication?

When I installed EPiServer I left the default configuration for membership as MultiplexingMembershipProvider and role as MultiplexingRoleProvider.

After adding a new User and making them a member of a group which has access rights to everything from root, I am unable to login with the newly created user.. How do I give these users access to the CMS?

Upvotes: 2

Views: 701

Answers (2)

Marfat
Marfat

Reputation: 143

Thank you, Johan Kronberg for pointing me to the right direction. Here it is in case anyone is struggling to find out why it's not working.

In my web.config I had to add the group I created to be allowed authorization in the following line:

<allow roles="WebEditors, WebAdmins, Administrators"/>

Upvotes: 1

Johan Kronberg
Johan Kronberg

Reputation: 1086

Add the group to ui and possibly ui/admin location elements in Web.config. Also add the group to the CmsAdmins definition in EPiServerFramework.config.

Upvotes: 1

Related Questions