'LiipImagineBundle doesn't create media/cahe directories

The original image is located in public/images/properties The image is looked in the right folder

http://localhost:8000/media/cache/resolve/my_thumb/images/properties/pexels-expect-best-323780-6270d2f4c6366254457078.jpg 404 (Not Found)

but media/cache are not generated by liip_imagine

here is my config

liip_imagine:
    # valid drivers options include "gd" or "gmagick" or "imagick"
    driver: "gd"
    filter_sets:
        cache: ~
        my_thumb:
            quality: 75
            filters:
                thumbnail: { size: [120, 90], mode: outbound }
                allow_upscale: true

and where I apply the filter

<img src="{{ vich_uploader_asset(property, 'imageFile') | imagine_filter('my_thumb') }}"  alt=""/>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source