Unable to view Sharepoint Web application General Settings

 

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()