http://thechriskent.com/2012/06/18/intermittent-unable-to-display-this-web-part-messages/
$myfarm = Get-SPFarm
$myfarm.XsltTransformTimeOut
If you’re experiencing the above problem, you probably got a 1 back from the above command indicating that the timeout is currently set to 1 second. To set it to a more reasonable value (we choose the original 5 seconds) just do this (assuming you set the $myfarm object using the above powershell):
$myfarm.XsltTransformTimeOut = 5
$myfarm.Update()
$myfarm = Get-SPFarm
$myfarm.XsltTransformTimeOut
If you’re experiencing the above problem, you probably got a 1 back from the above command indicating that the timeout is currently set to 1 second. To set it to a more reasonable value (we choose the original 5 seconds) just do this (assuming you set the $myfarm object using the above powershell):
$myfarm.XsltTransformTimeOut = 5
$myfarm.Update()
No comments:
Post a Comment