Search code examples
apachemagentocachingbitnami

How to disable caching in Bitnami Magento Stack entirely


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?


Solution

  • 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)