ImageProcessor not handling requests Umbraco 7.5.14
ImageProcessor doesn't seem to be handling the query strings being passed with requests on a site running Umbraco 7.5.14. Nothing happens at all, and there's nothing in the logs. It works on another site running Umbraco 7.5.8 .
Seems strange that there are no errors in the logs, but I really have no leads left to investigate - anyone had an issue like this before, or at least an idea what to look for?
The rest of my Web.config related to ImageProcessor looks the same as the one you posted (+ the configs that point to the ImageProcessor configuration files).
As for the http/https, the other solution that works has the protocol set to http as well and all works as expected.
"ImageProcessor doesn't seem to be handling the query strings being
passed with requests on a site running Umbraco 7.5.14. Nothing happens
at all, and there's nothing in the logs."
What makes you think it's not working? Could you provide a code example of how you are using it?
Have you checked in ~/app_data/cache/ folder to see whether images are being cached there? If it's empty, does IIS have write permission to this folder?
ImageProcessor not handling requests Umbraco 7.5.14
ImageProcessor doesn't seem to be handling the query strings being passed with requests on a site running Umbraco 7.5.14. Nothing happens at all, and there's nothing in the logs. It works on another site running Umbraco 7.5.8 .
packages.config:
proccessing.config
security.config:
cache.config:
Seems strange that there are no errors in the logs, but I really have no leads left to investigate - anyone had an issue like this before, or at least an idea what to look for?
Hi Martin
Sure you probably have these, but as you don't explicitly say,,, wondering if you have got the HttpModules specified in the web.config?
??
other thought is, the security.config - usually if this isn't right, nothing happens - should the protocol be https? for your whitelisted urls?
regards
Marc
Hey Marc - apart from this line:
The rest of my Web.config related to ImageProcessor looks the same as the one you posted (+ the configs that point to the ImageProcessor configuration files).
As for the http/https, the other solution that works has the protocol set to http as well and all works as expected.
What makes you think it's not working? Could you provide a code example of how you are using it?
Have you checked in
~/app_data/cache/
folder to see whether images are being cached there? If it's empty, does IIS have write permission to this folder?Do you run this solution in Azure? I had a similar issue with wrong configuration to my Blobstorage.
The problem was that in security.config of ImageProcessor:
This line is commented out, so none of the files were being cached and used.
After uncommenting this line out everything started to work just fine.
is working on a reply...