A long shot is to check if you have the correct virtual roles node in Web.config. Should look similar to
<virtualRoles addClaims="true">
<providers>
<add name="Administrators" type="EPiServer.Security.WindowsAdministratorsRole, EPiServer.Framework" />
<add name="Everyone" type="EPiServer.Security.EveryoneRole, EPiServer.Framework" />
<add name="Authenticated" type="EPiServer.Security.AuthenticatedRole, EPiServer.Framework" />
<add name="Anonymous" type="EPiServer.Security.AnonymousRole, EPiServer.Framework" />
<add name="CmsAdmins" type="EPiServer.Security.MappedRole, EPiServer.Framework" roles="WebAdmins, Administrators" mode="Any" />
<add name="CmsEditors" type="EPiServer.Security.MappedRole, EPiServer.Framework" roles="WebEditors" mode="Any" />
<add name="GoogleAnalyticsAdministrators" type="EPiServer.Security.MappedRole, EPiServer.Framework" roles="Administrators" mode="Any" />
<add name="Creator" type="EPiServer.Security.CreatorRole, EPiServer" />
<add name="PackagingAdmins" type="EPiServer.Security.MappedRole, EPiServer.Framework" roles="WebAdmins, Administrators" mode="Any" />
</providers>
</virtualRoles>
Check alloy demo site for exact syntax. If that doesn't do it, try running the site with fresh Web.config from demo site and see if that helps. Empty temp files for asp.net is always worth trying of you get weird exceptions too :)
My first guess would be config issue related to virtual roles though...
Hi Guys,
I've upgraded a CMS 7 site to CMS 7.5 via deployment center, I've added nuget packages and fixed build errors.
I'm getting the following exception when I start my 7.5 upgraded site (7.5.394.2). I've seen similar posts but nothing I've tried that was suggested in those posts has helped to resolve my issue. For example I've double checked DLL versions in bin and binding redirects within web.config
Any idea where else I can investigate?
Thanks
Mark