Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I can't make "Site Feed" activated from Managed Site Features. It says

An unexpected error has occurred.

I get logs with

get-splogevent -starttime (get-date).addminutes(-1) | fl message > c:\errors.txt

Here is the error:

viewstatelog: Failed to write to the velocity cache

Edited:

I think I found the solution for this error. I write these commands at Powershell:

$instanceName ="SPDistributedCacheService Name=AppFabricCachingService"
$serviceInstance = Get-SPServiceInstance | ? {($_.service.tostring()) -eq $instanceName -and ($_.server.name) -eq $env:computername}
$serviceInstance.Provision()

But It says there is no available memory for Provision().

How can I clear cache?

share|improve this question
What version of SharePoint are you using? – Thomas Vochten Jan 16 at 16:00
Sharepoint 2013 – e.ozmen Jan 17 at 6:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.