Wednesday, July 3, 2013

“Updates are currently disallowed on GET requests”- error trying to access web-application general settings in SharePoint Central Admin

Error Message:-

Updates are currently disallowed on GET requests. To allow updates on a GET, set the 'AllowUnsafeUpdates' property on SPWeb

Solution:-


Run below Powershell Script to get rid of this error:
$w = get-spwebapplication <url of your sharepoint web-application>
$w.HttpThrottleSettings
$w.Update()


This should resolve the error and General Settings page should load as expected. :)
 

No comments:

Post a Comment

SharePoint document metadata not updating

I faced a weird issue today, Metadata for document which has lookup column was not updating even after saving the item. There was no erro...