Search This Blog

Monday 9 September 2013

Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor such as Microsoft SharePoint Designer. If the problem persists, contact your Web server administrator.


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

No comments:

Post a Comment