Its the problem with ViewFormPagesLockdown.
To overcome this problem, I executed the below code in PowerShell;
To determine if a site has ViewFormPagesLockdown enabled run the following:
get-spfeature -site http://sitecollectionURL
If ViewFormPagesLockDown is listed, it's enabled.
$lockdown = get-spfeature viewformpageslockdown
disable-spfeature $lockdown -url http://sitecollectionURL
If anonymous is already setup, you may need to disable\re-enable anonymous on the site.
Happy Coding :)
0 comments:
Post a Comment