SuperCache でエラーメッセージが表示される
事象
SuperCacheを有効化すると、以下のようなエラーが発生した。
Warning! WP Super Cache caching was broken but has been fixed! The script advanced-cache.php could not load wp-cache-phase1.php.
The file /home/danroo/wp-content/advanced-cache.php has been recreated and WPCACHEHOME fixed in your wp-config.php. Reload to hide this message.
Warning! Could not update /home/danroo/wp-config.php! WPCACHEHOME must be set in config file.
wp-config.phpに以下を記載し、リロードすると解消した。
define('WPCACHEHOME', '/home/danroo/wp-content/plugins/wp-super-cache/');
define('WP_CACHE', true);
参考リンク
- WP Super Cache – WordPress plugin | WordPress.org
https://wordpress.org/plugins/wp-super-cache/#faq - Warning! WP Super Cache caching was broken but has been fixed! | WordPress.org
https://wordpress.org/support/topic/warning-wp-super-cache-caching-was-broken-but-has-been-fixed-2/
コメントを書く