WordPress

WP Super Cacheのアンインストール

WP Super Cacheを導入していたウェブサイトのトップページが真っ白になったのでいろいろ調査していたところ、
原因はWP Super Cacheだったので、アンインストールした話。

WP Super Cacheはプラグインをアンインストールするときはこういう手順でやってね!とプラグイン配布ページにも書いてあった

  1. Turn off caching on the plugin settings page and clear the cache.
  2. Deactivate the plugin on the plugins page.
  3. Remove the WP_CACHE define from wp-config.php. It looks like define( 'WP_CACHE', true );
  4. Remove the Super Cache mod_rewrite rules from your .htaccess file.
  5. Remove the files wp-content/advanced-cache.php and wp-content/wp-cache-config.php
  6. Remove the directory wp-content/cache/
  7. Remove the directory wp-super-cache from your plugins directory.

参考:How to uninstall WP Super Cache

私の英語能力のなさは相変わらずなので、フォーラムを参考にした。

  1. あらかじめ管理画面よりキャッシュをクリアする。
  2. プラグインを停止する。
  3. wp-config.php内のWP_CACHE defineの箇所を削除。
  4. .htaccess内のSuper Cache mod_rewrite rulesを削除する。(# BEGIN WPSuperCache から # END WPSuperCacheまで)
  5. wp-content/advanced-cache.php と wp-content/wp-cache-config.php のファイルを削除する。
  6. wp-contentフォルダ内のcacheフォルダ以下をごっそり削除。(もしFFFTPからcacheフォルダ以下のデータが消せないようならremove.phpで消せます。)
  7. プラグインフォルダの中からWP Super Cacheをごっそり削除。

で解決。

  • この記事を書いた人

ゆず

忘れないように自分の覚書と、誰かも困っているかもしれないので参考になればいいなくらいの軽い備忘録です。
一杯おごる

-WordPress
-