Image transfers don't work from cloud development environment to live
For images I use my own Azure Blob Storage.
I can perfectly transfer image from my local machine to my cloud development environment but I keep getting dependency errors when I try to transfer images from development to the live environment.
Here is what a typical error says:
Item selected for transfer: Payment Options
Id: 1268
Udi: umb://media/09920e886cd94589b356d706f420d38d
Type: media
Depends on:
Udi: umb://media-file/1847/payment-options.png
Type: media-file
Dependency does not exist.
Needless to say, the image files do exist in my blob storage container and they do show up in the website on the development environment.
What I noticed however, and this might be related to this issue, is that the images will only show up on the website when processed via ImageProcessor. In \Config\imageprocessor\processing.config I had to set interceptAllRequests to true otherwise images without imageprocessor queries wouldn't show up:
Image transfers don't work from cloud development environment to live
For images I use my own Azure Blob Storage.
I can perfectly transfer image from my local machine to my cloud development environment but I keep getting dependency errors when I try to transfer images from development to the live environment.
Here is what a typical error says:
Item selected for transfer: Payment Options
Id: 1268
Udi: umb://media/09920e886cd94589b356d706f420d38d
Type: media
Depends on:
Udi: umb://media-file/1847/payment-options.png
Type: media-file
Dependency does not exist.
Needless to say, the image files do exist in my blob storage container and they do show up in the website on the development environment.
What I noticed however, and this might be related to this issue, is that the images will only show up on the website when processed via ImageProcessor. In \Config\imageprocessor\processing.config I had to set interceptAllRequests to true otherwise images without imageprocessor queries wouldn't show up:
This leads me to believe there has to be an issue somewhere with regards to how images are queried but I am dumbfounded as to where it could be. I tripled checked the documentation on https://github.com/umbraco-community/UmbracoFileSystemProviders.Azure/tree/develop-version-3 and https://our.umbraco.com/Documentation/Extending/FileSystemProviders/Azure-Blob-Storage/index-v8 and as far as I can see I set up everything correctly.
Any help appreciated!
is working on a reply...