-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
imageprocessor not working #6
Comments
I face the same problem. @DannerrQ Could you please let us know if we're doing something wrong or is there an issue with the code? Thanks! |
+1 on not getting imageprocessor to work. Always just shows the original image. |
I'm facing this issue, do you result it? |
Ran into this as well, made a PR to show the required change to get it to work again: |
Hi All, I got image processor to work with any new uploaded images but all the existing pages uploaded prior to the installation of this package don't seem to crop. So a plus one on this error. It would be a great package if the image processor was stable. I use this heavily on all projects. |
I've just spent the morning integrating this into one of our Umbraco 8 sites, with the PR @jemayn submitted I was able to get new images cropping, I then noticed that existing images weren't cropping. The new images are uploaded to S3 with the "everyone" permission set to read, the images I bulk uploaded weren't. Once I changed the permissions for all the existing files, the crops started working. I know this issue is old, but I thought I'd add it here incase anyone needs it. |
I can't seem to get the parameters working when adding to the image URLs, the file loads but is not cropped.
say for instance:
https://localhost:44327/media/szapuibi/some-image.jpg?width=100&height=100&mode=crop
which in the Umbraco log returns:
Exception - ImageProcessor.Common.Exceptions.ImageProcessingException: GetResponseAsync 132 : Response status code does not indicate success: 403 (Forbidden).
however the following image URLs load fine (obviously not cropped)
https://mytest-bucket.s3.ap-southeast-2.amazonaws.com/media/szapuibi/some-image.jpg?width=100&height=100&mode=crop
https://mytest-bucket.s3.amazonaws.com/media/szapuibi/some-image.jpg?width=100&height=100&mode=crop
I've added the following to the root web.config:
Replaced the media/webconfig file with:
And replaced the security.config file with:
I've removed "{Your Key Prefix}" from the sample - but am I supped to replace that with something?
Is there anything out of place here?
Currently running Umbraco 8.9.0 with
ImageProcessor 2.7.0.100
ImageProcessor.Web 4.10.0.100
ImageProcessor.Web.Config 2.5.0.100
Any assistance you could provide would be greatly appreciated.
Thank you
The text was updated successfully, but these errors were encountered: