0

I am using the Bitnami Magento 1.9 Stack and want to disable every kind of cache. I made these attempts:

  1. I disabled Magento Caching (as described here)
  2. I disabled Apache2 Caching (as described here) for (html|htm|js|css|phtml|php) and checked the HTTP-Header as described here
  3. I disabled Browser Caching with Clear Cache

Unfortunately, my phtml-files are still being cached. CSS- & JS-files are gladly not changed anymore.

Is there any further cache that I have forgotten to disable?

Community
  • 1
  • 1
Benji
  • 549
  • 7
  • 22

1 Answers1

3

I found one last cache which I had not yet disabled:
OPcache
It is installed by Zend.

To disable this cache, open the file php.ini (in my case C:\Bitnami\magento-1.9.2.4-2\php\php.ini) and set
opcache.enable=0

(solution from Bitnami Wiki)

Benji
  • 549
  • 7
  • 22