ULS Error (repeating) in SharePoint 2013 shows:
UserAgent not available, file operations may not be optimized
A quick shout out to Richard Leeman for the fix - it means that the Blob Cache has to be cleared. Using PowerShell:
$webApp = Get-SPWebApplication "http://<Site>:<Port if needed>"
[Microsoft.SharePoint.Publishing.PublishingCache]::FlushBlobCache($webApp)
UserAgent not available, file operations may not be optimized
A quick shout out to Richard Leeman for the fix - it means that the Blob Cache has to be cleared. Using PowerShell:
$webApp = Get-SPWebApplication "http://<Site>:<Port if needed>"
[Microsoft.SharePoint.Publishing.PublishingCache]::FlushBlobCache($webApp)
3 comments:
This only works after doing an IISreset!
Thanks David
I had this same issue when clicking About Me to access my site.
I ran the flush on our http:// and ran iisreset on all our Web servers and this resolved the issue.
Many thanks, Ellya
Post a Comment