Issues were for example
- Updated images didn't work, old images still showed for clients.
- Change imageproperties didn't work either
- Changing website logo didn't work
Expected behaviour is when flushblob has run on farm, the folder under siteID in blob-directory will get a new created date and new name.
For me, they just left the old folder without change on certain farm-members.
After searching for a official solution I landed on my own fix which was as follows
- Redirect trafik from webfrontend or do this during servicewindow
- Update url and run setBlobDisabled.ps1 (or disable blob manually in web.config)
- This will cause a reset to Application Pool and blobfolder will stop updating change.bin file in blob temp-directory
- Rename or delete folder with SiteID, for example E:\Blob\14\354006434 to 354006434_old
- Update url and run setBlobEnabled.ps1
- Problem solved.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-PSSnapin Microsoft.SharePoint.Powershell -ErrorAction SilentlyContinue | |
$WebApplication = Get-SPWebApplication <my web application url> | |
[Microsoft.SharePoint.Publishing.PublishingCache]::FlushBlobCache($WebApplication) | |
Write-Host "Flushed the BLOB cache for:" $WebApplication |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#disable blob cache | |
$scriptpath = $(split-path -Parent $MyInvocation.MyCommand.Definition) | |
$webConfigPath = <my web folder>\web.config" | |
#save backup | |
copy-item -Path $webConfigPath -Destination "$($scriptPath)\backup\$(get-date -format 'yyMMdd_HHmm')-web.config" | |
#make change | |
[xml]$webConfig = Get-Content $webConfigPath -ReadCount 1 | |
$node = $webConfig.SelectSingleNode('//BlobCache') | |
if ($node.enabled -notlike "false") { | |
$node.enabled = "false" | |
$webConfig.Save($webConfigPath) | |
write-output "Blobcache disabled" | |
} | |
else { | |
write-warning "Value already set" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#disable blob cache | |
$scriptpath = $(split-path -Parent $MyInvocation.MyCommand.Definition) | |
$webConfigPath = <my web folder>\web.config" | |
#save backup | |
copy-item -Path $webConfigPath -Destination "$($scriptPath)\backup\$(get-date -format 'yyMMdd_HHmm')-web.config" | |
#make change | |
[xml]$webConfig = Get-Content $webConfigPath -ReadCount 1 | |
$node = $webConfig.SelectSingleNode('//BlobCache') | |
if ($node.enabled -notlike "true") { | |
$node.enabled = "true" | |
$webConfig.Save($webConfigPath) | |
write-output "BlobCache enabled" | |
} | |
else { | |
write-warning "Value already set" | |
} |
No comments:
Post a Comment