Search code examples
opencartopencart2.xvqmod

How to disable vqmod cache in Opencart 2.0?


Hello is there way how to disable all vqmod cache on opencart 2.0? I have tried clearing the cache from : vqmod/cache but it doesn't work. This is why i need to disable all cache .


Solution

  • You can easily disable caching in vQmod though I'm not sure why you'd want to - I've only run into issues with this on sites with 100+ vQmods installed. Generally it's not recommended.

    To disable the cache simply edit vqmod/vqmod/php and set:

    private static $_devMode = true;
    

    In dev mode, vqmod will parse your xml files in real time which may be a bit slower and it will not use any cache files.