WP Super Cacheを導入していたウェブサイトのトップページが真っ白になったのでいろいろ調査していたところ、
原因はWP Super Cacheだったので、アンインストールした話。
WP Super Cacheはプラグインをアンインストールするときはこういう手順でやってね!とプラグイン配布ページにも書いてあった。
- Turn off caching on the plugin settings page and clear the cache.
- Deactivate the plugin on the plugins page.
- Remove the WP_CACHE define from wp-config.php. It looks like
define( 'WP_CACHE', true );
- Remove the Super Cache mod_rewrite rules from your .htaccess file.
- Remove the files wp-content/advanced-cache.php and wp-content/wp-cache-config.php
- Remove the directory wp-content/cache/
- Remove the directory wp-super-cache from your plugins directory.
私の英語能力のなさは相変わらずなので、フォーラムを参考にした。
- あらかじめ管理画面よりキャッシュをクリアする。
- プラグインを停止する。
- wp-config.php内のWP_CACHE defineの箇所を削除。
- .htaccess内のSuper Cache mod_rewrite rulesを削除する。(# BEGIN WPSuperCache から # END WPSuperCacheまで)
- wp-content/advanced-cache.php と wp-content/wp-cache-config.php のファイルを削除する。
- wp-contentフォルダ内のcacheフォルダ以下をごっそり削除。(もしFFFTPからcacheフォルダ以下のデータが消せないようならremove.phpで消せます。)
- プラグインフォルダの中からWP Super Cacheをごっそり削除。
で解決。