wordpress
Placing below line in your “settings.php” file will disable it.
1
|
ini_set('opcache.enable', '0'); |
However, I like the “.htaccess” method much better.
1
|
php_flag opcache.enable Off |
The workaround is to disable the OPcache, which is enabled by default. It is a setting in php.ini file.
1
|
opcache.enable=0 |