I have the following error message in my Symfony3 application:
This is the Twig code, along with the imagine_filter:
This is the local URL generated after applying the LiipImage filter:
localhost/symfony3/web/app_dev.php/media/cache/resolve/my_thumb/symfony3/web/images/uploads/5745ce2e628a9.png
This is my config for liipimage and vichuploader:
# VichUploader Configuration
vich_uploader:
db_driver: orm # or mongodb or propel or phpcr
twig: true
mappings:
product_image:
uri_prefix: /images/uploads
upload_destination: %kernel.root_dir%/../web/images/uploads/
namer: vich_uploader.namer_uniqid
inject_on_load: true
delete_on_update: true
delete_on_remove: true
# liip_imagine Configuration
liip_imagine:
resolvers:
default:
web_path: ~
filter_sets:
cache: ~
my_thumb:
quality: 75
filters:
thumbnail: { size: [120, 90], mode: outbound }
How can I fix it?