How to clear cache in Opencart from PHP

user4541912 picture user4541912 · Feb 16, 2015 · Viewed 24.5k times · Source

I need to clear cache on certain condition from PHP code. How can I do so. I know that there is object Cache exists in opencart engine, but how do delete cache correctly.
Or it is possible to delete just folders ?
Please give advice.

Answer

Brian picture Brian · Feb 16, 2015

In OpenCart there are 3 places that store cache

  1. image cache is located at public_html/image/cache

  2. if you have vQmod public_html/vqmod/vqcache

  3. system (data) cache public_html/system/cache

You can delete files within these folders - do not delete the cache folders - only the content inside.

I hope this helps.