Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Brad 69 posts 97 karma points
    Oct 23, 2019 @ 19:48
    Brad
    0

    Umbraco 7.5.14 ImageProcessor not working with Azure Blob Storage

    I've followed this tutorial: https://our.umbraco.com/Documentation/Extending/FileSystemProviders/Azure-Blob-Storage/index-v7

    On getting the media moved to an Azure Blob Storage. I don't have any problem with the first part, as far as the images being served from the "media" blob. But the ImageProcessor does not work anymore after converting to an Azure Blob Storage. I'd like to store the cached images in the azure blob, but don't need a CDN (maybe using the blob storage for the cached images requires the CDN?). What is incorrect about the tutorial above?

    I've upgraded all ImageProcessor stuff that I can. ImageProcessor.dll - 2.7.0.100 ImageProcessor.Web.dll - 4.8.2.0 ImageProcessor.Web.Plugins.AzureBlobCache.dll - 1.5.0.100 (its not clear if this file is even required)

    Here is are some of the config files: https://gist.github.com/bgilb5/1ee2a3516a1b2eae228407967f0d8e98

  • Brad 69 posts 97 karma points
    Oct 23, 2019 @ 20:26
    Brad
    2

    If anyone else ends up with this issue you need to add Container to the CloudImageService settings:

    <service prefix="media/" name="CloudImageService" type="ImageProcessor.Web.Services.CloudImageService, ImageProcessor.Web">
          <settings>
            <setting key="MaxBytes" value="8194304"/>
            <setting key="Timeout" value="30000"/>
            <setting key="Container" value="prod-media"/>
            <setting key="Host" value="https://xxxx.blob.core.windows.net"/>
          </settings>
        </service>
    
  • Rushabh 3 posts 74 karma points
    Mar 16, 2020 @ 01:40
    Rushabh
    0

    I tried to add Container as well, but still no luck!

Please Sign in or register to post replies

Write your reply to:

Draft