Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Booked marked site favicon will not update

  • 9 réponses
  • 7 ont ce problème
  • 3 vues
  • Dernière réponse par cor-el

more options

A few days ago I changed a favicon on one of my sites and yet my Firefox bookmark favicon steadfastly remains the old favicon and will not update to the new one! I have tried 'forget history' for the site and looked at where Firefox stores bookmark info but this is as a .sql file and is not easy to edit.

Any idea why my bookmarked favicon has not/will not update and how I can get it to update?

A few days ago I changed a favicon on one of my sites and yet my Firefox bookmark favicon steadfastly remains the old favicon and will not update to the new one! I have tried 'forget history' for the site and looked at where Firefox stores bookmark info but this is as a .sql file and is not easy to edit. Any idea why my bookmarked favicon has not/will not update and how I can get it to update?

Solution choisie

Hi Thanks! The code has worked...and this is a fix to the problem.

I was unsure about the "undefined" response but when I visited my bookmarks all the favicons had gone! Then I visited my site with the new favicon and finally it updated the favicon in the bookmark! Good!

Now I am visiting all sites in my bookmarks to restore all favicons back to all my bookmarked sites!

Lire cette réponse dans son contexte 👍 0

Toutes les réponses (9)

more options

Delete the bookmark, then bookmark the page again.

If you have the same problem with a large number of bookmarks, try the Favicon Reloader add-on.

more options

I didn't mention that I have tried deleting the bookmark and re-bookmarking the site so many times without success.

Favicon Reloader hasn't helped either.

Help.....

more options

Do you see the new favicon on the tab bar?

more options

Yes the new favicon displays on the browser tab as normal

more options

You can try to let all favicons expire with pasting this code in the command line in the Browser Console (Firefox/Tools > Web Developer).

Note that this will remove all favicons, so you need to revisit website to make Firefox retrieve the favicons.

var fS = Components.classes["@mozilla.org/browser/favicon-service;1"]
         .getService(Components.interfaces.nsIFaviconService);
fS.expireAllFavicons();
more options

When I use the code I get undefined back eg: var fS = Components.classes["@mozilla.org/browser/favicon-service;1"]

        .getService(Components.interfaces.nsIFaviconService);

fS.expireAllFavicons(); undefined

more options

That response is OK. You should see that all items in the history and bookmarks have lost their favicons and restore their favicons after revisiting a link.

more options

Solution choisie

Hi Thanks! The code has worked...and this is a fix to the problem.

I was unsure about the "undefined" response but when I visited my bookmarks all the favicons had gone! Then I visited my site with the new favicon and finally it updated the favicon in the bookmark! Good!

Now I am visiting all sites in my bookmarks to restore all favicons back to all my bookmarked sites!

Modifié le par richardpd

more options

You're welcome

Alternatively you could also use the SQLite Manager extension.

Favicons are stored as BLOB (binary large object) data in the moz_places and moz_favicons tables in the places.sqlite file.
You would have to clear the favicon entry for the site in the moz_places table and remove the corresponding record in the moz_favicons table to reset the favicon.