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 Uživatelům pomohlo
Byla tato odpověď nápomocná?