본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Booked marked site favicon will not update

  • 9 답장
  • 7 이 문제를 만남
  • 3 보기
  • 최종 답변자: 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.