update cmsContentXml
set xml = cast(replace(cast(xml as nvarchar(max)), '/media/', 'http://YOURWEB/media/') as ntext)
go
update cmsPropertyData
set dataNText = cast(replace(cast(dataNText as nvarchar(max)), '/media/', 'http://YOURWEB/media/') as ntext)
go
to update xml data and disable cache in umbracoSettings.config file.
Azure blob storage to file system
How to move media without losing data? For now i have already copied media folder from blob storage and modified FileSystemProviders provider to
what should i do next to see old images from local folder?
Found a solution - need to call sql queries
to update xml data and disable cache in umbracoSettings.config file.
is working on a reply...