php - How to disable cache in open cart CMS -
i used set $expire = 0; in cache.php files. delete cache folder. put $this->cache->delete(); in random files. use ctrl+f5 in brouser. cache still alive.
easiest way return false cache->get method:
system/library/cache.php:
public function get($key) { return false;
Comments
Post a Comment