Setting up Azure Blob storage on new "late-stage" ...
# help-with-umbraco
k
Anyone got any tips on setting up AzureBlob storage on clean install of Umbraco 8.18.13 ? What i have done - Install umbraco (
install-pacakge UmbracoCms
) - Build and run through install - Install Azureblob (
NuGet\Install-Package UmbracoFileSystemProviders.Azure.Media -Version 3.1.0
) - Update web.config - Fix newtonsoft so it will boot (update web.config dependency from 12.0.0. to 13.0.0) get a boot failed error with
Copy code
Could not load file or assembly 'System.Diagnostics.DiagnosticSource
now this is similar to the newtonsoft error, and i can continue to wade through this treacle, but just hopeing someone has a 'oh yeah, just do this' answer to help out.
Fixed system.diagnostices with
Copy code
xml
<dependentAssembly>
  <assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
  <bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="5.0.0.0"/>
</dependentAssembly>
now i get error on
System.Runtime.CompilerServices.Unsafe
someone tell me i did something wrong.
k
Never seen this. We use the Azure file system provider with U8. Are you sure you're installing the U8 version of the Azure file system provider? And are you sure the problem appears not before, but after, installing it?
m
Is UmbracoFileSystemProviders.Azure installed as well? On a 8.18.13 site we have the following is in the packages.config:
k
yeah to come back to this after some leave, yes v3.1.0 of the file providers package ,updates quite a few internal dependencies and it takes a while to resolve them, all (e.g i gave up) - installing 3.0.2 and it all works "out of the box". As this was just a 'quick' test for someone I've done that.
k
I don't even see beyond 3.0.1 on GitHub. Maybe 3.0.2 and 3.1.0 weren't really meant to go live. 3.0.2 seems to update Umbraco references, but 3.1.0 only Azure references but maybe those Azure reference updates break Umbraco 8.latest.
35 Views