Friday, August 06, 2010
#
Symptom:
This Error in the application event logs:
Object Cache: The super user account utilized by the cache is not configured. This can increase the number of cache misses, which causes the page requests to consume unneccesary system resources.
To configure the account use the following command 'stsadm -o setproperty -propertyname portalsuperuseraccount -propertyvalue account -url webappurl'. The account should be any account that has Full Control access to the SharePoint databases but is not an application pool account.
Additional Data:
Current default super user account: SHAREPOINT\system
Solution:
This time, a helpful message in the error itself. Just follow the instructions in the error and use the stsadm command to set the super user account for each Web app.
Symptom:
EventID 7043 Source: SharePoint Foundation
Load control template file /_controltemplates/TaxonomyPicker.ascx failed: Could not load type 'Microsoft.SharePoint.Portal.WebControls.TaxonomyPicker' from assembly 'Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'.
Problem:
The file drive:\Program Files\Common Files\Web Server Extensions\14\TEMPLATE\CONTROLTEMPLATES\TaxonomyPicker.ascx is badly formed and doesn't compile.
Solution:
You can change the bad syntax of the file. To Fix:
Find the character string , and replace with a comma ‘,’ (without quotes).
Or, you can rename it TaxonomyPicker.ascx_broken. It is badly formed, but the file is never actually used. Thank you to this post for the answer:
http://todd-carter.com/post/2010/05/03/Help-Wanted-Taxonomy-Picker.aspx