How do you force reload (not from cache) in Firefox 4.0?

I have seen a lot of supposed theories on the internet, including:

Ctrl + F5

Ctrl + Shift + R

But, in reality, these do not actually work. So how do you really do it?

The only way I seem to be able to do it, is to manually clear the cache each time. This is hardly a solution in a development environment.

link|improve this question
feedback

migrated from stackoverflow.com Jun 8 '11 at 9:13

This question came from our site for professional and enthusiast programmers.

4 Answers

In FireBug, on a Net tab open a menu (small triangle in the tab) and select Disable Browser Cache.

link|improve this answer
feedback

As far as I know, at least in 3.x series, 2nd or 3rd refresh in a row forces Firefox to retrieve full page content again. I can agree that it seems like it is not always working.

link|improve this answer
feedback

I'm on Firefox 8 and Ctrl + F5 definitely is the shortcut to a full page reload.

link|improve this answer
feedback

Go to: about:config, then find the browser.cache.check_doc_frequency key and change it to 1.


For reference, valid values for browser.cache.check_doc_frequency are:

  • 0 – Check for a new version of a page once per session (a session starts when the first application window opens and ends when the last application window closes).

  • 1 - Check for a new version every time a page is loaded. ← This one

  • 2 – Never check for a new version – always load the page from cache. (offline mode?)

  • 3- Check for a new version when the page is out of date. (Default)

Obviously this will affect your entire browsing experience, but it's this or CTRL + F5 a few times.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown