搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Neither "Clear Cache" extension nor "Clear Cache" under Tools Menu works since update to Version 32.0

  • 3 个回答
  • 38 人有此问题
  • 8 次查看
  • 最后回复者为 cor-el

more options

Since Firefox automatically updated to Version 32.0, any attempt to manually clear the cache returned message "Error," the single word without any explanation.

Not only do the "Clear Cache" extensions no longer work - though they were NOT disabled as being incompatible, but the "Clear Cache" in the Tools menu does not work, either.

Since Firefox automatically updated to Version 32.0, any attempt to manually clear the cache returned message "Error," the single word without any explanation. Not only do the "Clear Cache" extensions no longer work - though they were NOT disabled as being incompatible, but the "Clear Cache" in the Tools menu does not work, either.

所有回复 (3)

more options

hello, the backend for the browser cache changed in firefox 32 in order to improve performance - addons may need to adapt to that. please use the built-in method to clear the cache until then: How to clear the Firefox cache

more options

I am usingEmpty Cache Button {web link} Cache clearing made easy. One click.

I think it's still working.

more options

The Firefox 32 release has switched to a new cache called cache2 and that can break extensions that use the old API and aren't aware of this new cache.

If you want then you can disable the new cache and switch back to the old cache, but that isn't recommended.

  • browser.cache.use_new_backend_temp = false

This code will clear the new cache, so you can consider to check the code in the extension to see if you can repair it. This code will also work with extensions that allow to attach such a code to a button or a keyboard shortcut or mouse gesture.

var cache = Cc["@mozilla.org/netwerk/cache-storage-service;1"]
            .getService(Ci.nsICacheStorageService);
try { cache.clear() } catch(ex) {}

Note that you wouldn't be able to clear the disk cache when you are in Private Browsing mode.