• I’m creating content filters, and have to wait for changes for a minute or more.

    I turned off browser cache (Chrome Dev Toolbar).
    I turned off OPCache in my MAMP php.ini (5.5.3).

    I have no any additional cacheing plugin installed, running WordPress 3.8.1 using a TwentyTwelwe 1.3 child theme I created.

Viewing 1 replies (of 1 total)
  • That sounds like PHP OPCache to me. I had a similar problem and some confusion about the correct php.ini file and the correct lines.

    The correct php.ini file is:
    /Applications/MAMP/bin/php/php5.5.3/conf/php.ini

    and the lines to comment out are

    [OPcache]
    zend_extension="/Applications/MAMP/bin/php/php5.5.3/lib/php/extensions/no-debug-non-zts-20121212/opcache.so"
     opcache.memory_consumption=128
     opcache.interned_strings_buffer=8
     opcache.max_accelerated_files=4000
     opcache.revalidate_freq=60
     opcache.fast_shutdown=1
     opcache.enable_cli=1

    I’ve written a blog post about it at http://salferrarello.com/mamp-cache-settings/

Viewing 1 replies (of 1 total)
  • The topic ‘Turn off cahce?’ is closed to new replies.