Link to home
Start Free TrialLog in
Avatar of Network_Padawan
Network_Padawan

asked on

Sharepoint Error "An error has occurred in the claims providers configured from this site collection"

Hi guys,

need help. We restored a site in sharepoint from a recovered backup. During the restore, we created a new site but I think the fault was that we made the authentication "claims based".

How do i fix this or how do I change the authentication method?

Ive looked at many blogs and other sites but I dont understand the fixes mentioned. I am a sharepoint newbie.
Avatar of milindsaraswala
milindsaraswala

Use  below command in Paower shell

$webApp = Get-SPWebApplication "http://<web-app>/ "
$webApp.UseClaimsAuthentication = "False";
$webApp.Update();
$webApp.ProvisionGlobally();
Avatar of Network_Padawan

ASKER

Hi,

No sorry same error.
ASKER CERTIFIED SOLUTION
Avatar of milindsaraswala
milindsaraswala

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi, that did the trick in terms of claim based forms, but the error was caused my particular client. On anyone else's machine it worked fine. Strange. Thanks for your input thought.