搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Booked marked site favicon will not update

  • 9 回覆
  • 7 有這個問題
  • 52 次檢視
  • 最近回覆由 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?

被選擇的解決方法

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!

從原來的回覆中察看解決方案 👍 0

所有回覆 (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

選擇的解決方法

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!

由 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.