Copied to clipboard

Flag this post as spam?

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


  • Phil Veloso 38 posts 251 karma points
    Nov 25, 2019 @ 10:13
    Phil Veloso
    0

    ImageProcessor - missing image on file path

    Hello all,

    I was hoping someone can help me resolve and recurring error i have recently encountered and is filling up my log files.

    This is the error being produced:

    ImageProcessor.Web.HttpModules.ImageProcessingModule [(null)] -
    
    ImageProcessor.Common.Exceptions.ImageProcessingException: ProcessImageAsync 610 : No image exists "...image path"
    

    The image paths contain the correct path for the file server but the images are not present.

    Any suggested would be greatly appreciated!

  • Yakov Lebski 594 posts 2350 karma points
    Mar 29, 2020 @ 00:08
    Yakov Lebski
    0

    please check what your container is public

  • Arun 144 posts 407 karma points
    Feb 09, 2023 @ 11:38
    Arun
    0

    Did anyone get the solution?

    I was able to bypass this error log with the web config rule
    but didn't get any optimal solution yet.

    <rule name="Block none existing image files before ImageProcessor" stopProcessing="true">
         <match url="^media/" /> 
         <conditions><add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /></conditions>
         <action type="CustomResponse" statusCode="404" statusReason="File or Directory not found." statusDescription="The resource you are looking for might have been removed." />
    </rule>
    

    Regards

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies