Bitnami Wampstack: PHP caching requires server restart

I setup a WAMP stack for the first time using Bitnami. Got working pretty quickly with vhost and everything, running a couple WordPress websites for local development. The problem is, nearly everytime I save a change to a PHP file the changes don’t appear when I refresh the browser unless I restart the Apache server.

I’ve searched around for a couple days now for a solution but nothing seems to work, considering going back to XAMPP for local development. I tried to disable opcache in the php.ini as someone suggested but that didn’t work.

Read More

Any ideas what it could be?

Related posts

1 comment

  1. In httpd.conf comment out:

        # Include conf/pagespeed.conf
        # Include conf/pagespeed_libraries.conf
    

    In php.ini set:

        opcache.enable=0
        opcache.enable_cli=0
    

    Source

Comments are closed.