Disable Opcache on your single website

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
  • 0 Utenti hanno trovato utile questa risposta
Hai trovato utile questa risposta?