J3.x

Difference between revisions of "Toolbar buttons missing after upgrade"

From Joomla! Documentation

m (→‎Common: checking a change)
 
(21 intermediate revisions by 5 users not shown)
Line 1: Line 1:
After performing an update it is ESSENTIAL to clear your web browser cache to reload the admin template css. If you do not do this then the user will not see the toolbar buttons.
+
Toolbar buttons are missing in the administrator views after a Joomla! upgrade.
Refreshing the browser cache solves this immediately.  
 
  
[Note : some browser especially chrome can have very sticky browser cache and its not enough to do a ctrl+5]
+
== Versions affected ==
 +
{{refers_to|3.1.4,3.1.5}}
  
 +
== What is the cause==
 +
There were CSS changes to the administration template and your browser is storing the out-dated version to speed up site loading. After performing an update it is '''ESSENTIAL''' to clear your web browser cache to reload the admin template CSS.
 +
 +
== How to fix ==
 +
===Common===
 +
Refreshing the browser cache solves this immediately. If you do not refresh the browser's cache, you will not see the toolbar buttons until the new CSS file replaces the CSS file in the browser's cache(temporary internet files).
 +
 +
Here is how to clear a browser's cache by browser:
 +
*'''Firefox / Safari''': Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
 +
*'''Google Chrome''': Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
 +
*'''Internet Explorer''': Hold Ctrl while clicking Refresh, or press Ctrl-F5
 +
*'''Opera''': Clear the cache in Tools → Preferences
 +
 +
{{tip|text=Note - some browser especially chrome can have very sticky browser cache and it is not enough to do a ctrl+f5. You might have to clear the browser cache by deleting temporary internet files. Refer to your browser's specific instructions for deleting temporary internet files.}}
 +
 +
===Not common===
 +
If the problem persists you may want to check to see if your server has [https://developers.google.com/speed/pagespeed/module mod_pagespeed] from Google enabled. If it does, and you want to keep using mod_pagespeed you'll need to flush the server side cache on upgrading to 3.1.x. You do this by logging into the server and then executing
 +
 +
A typical command and location:
 +
 +
<pre>
 +
sudo touch /var/cache/mod_pagespeed/cache.flush
 +
</pre>
 +
__NOTOC__
 
[[Category:Version 3.1.4 FAQ]]
 
[[Category:Version 3.1.4 FAQ]]
 +
[[Category:Version 3.1.5 FAQ]]

Latest revision as of 10:53, 16 January 2014

Toolbar buttons are missing in the administrator views after a Joomla! upgrade.

Versions affected[edit]

Info non-talk.png
General Information

This pertains only to Joomla! version(s):- 3.1.4  3.1.5


What is the cause[edit]

There were CSS changes to the administration template and your browser is storing the out-dated version to speed up site loading. After performing an update it is ESSENTIAL to clear your web browser cache to reload the admin template CSS.

How to fix[edit]

Common[edit]

Refreshing the browser cache solves this immediately. If you do not refresh the browser's cache, you will not see the toolbar buttons until the new CSS file replaces the CSS file in the browser's cache(temporary internet files).

Here is how to clear a browser's cache by browser:

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
A Tip!

Note - some browser especially chrome can have very sticky browser cache and it is not enough to do a ctrl+f5. You might have to clear the browser cache by deleting temporary internet files. Refer to your browser's specific instructions for deleting temporary internet files.

Not common[edit]

If the problem persists you may want to check to see if your server has mod_pagespeed from Google enabled. If it does, and you want to keep using mod_pagespeed you'll need to flush the server side cache on upgrading to 3.1.x. You do this by logging into the server and then executing

A typical command and location:

sudo touch /var/cache/mod_pagespeed/cache.flush