Wednesday, August 28, 2013

Error on access a SharePoint List – Collecting data on Project Server 2010

Error:

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. 

Correlation ID:9b6b1653-baef-46a4-ace8-ff9a1f535f87 

Screenshot:

webparterror

Resolution:

Increase the lists timeout through below PowerShell:

$farm = Get-SPFarm
$farm.XsltTransformTimeOut = 5
$farm.Update()

Reference: http://www.brandonclaps.com/?p=51

This was caused by the XsltTransformTimeout when using an Xslt list view. This is corrected by installing the February 2012 Cumulative Update and by making the following change via PowerShell.

No comments:

Post a Comment