Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
If you try to open general settings of a web application in sharepoint and get an error "Updates are currently disallowed on GET requests. To allow updates on a GET, set the 'AllowUnsafeUpdates' property on SPWeb.”
You can try this script from powershell.
$myweb = get-spwebapplication https://nameofproblemwebapp
$myweb.HttpThrottleSettings
$myweb.Update()
Comments
Anonymous
December 31, 2012
Never faced this issue before.....but thanks for your information. I will update this solution to my personal SP troubleshooting guide.Anonymous
January 11, 2018
Thanks for providing such a useful information to us which help me a lot in troubleshooting the issue.