# Favicon not showing up

**URL:** https://meta.discourse.org/t/favicon-not-showing-up/259399
**Category:** Bug
**Created:** [March 25, 2023, 2:26pm UTC](https://meta.discourse.org/t/favicon-not-showing-up/259399 "2023-03-25T14:26:50Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Leonardo1](https://avatars.discourse-cdn.com/v4/letter/l/97f17d/32.png) [@Leonardo1](https://meta.discourse.org/u/Leonardo1)
#### Post date: [March 25, 2023, 2:26pm UTC](https://meta.discourse.org/t/favicon-not-showing-up/259399/1 "2023-03-25T14:26:50Z")

</div>

Site: [stuffics.com](http://stuffics.com)

Hi, there seems to be a problem with favicons sinds the beginning.

The favicon is generated from [favicon.io](http://favicon.io)\*

Source code:

```plaintext
<link rel="icon" type="image/png" href="http://stuffics.com/uploads/default/optimized/1X/aa90c02cb0cdf22894fe3ffea2b2b610b86d0a8e_2_32x32.png">
<link rel="apple-touch-icon" type="image/png" href="http://stuffics.com/uploads/default/optimized/1X/d9129e4df65f8caabcae58ce1abeb70e58f2dca2_2_180x180.png">

```

Href’s seems to work.

Does anyone know how this could happen?

---

<div class="post-metadata">

### Author: ![Falco](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/falco/32/179432_2.png) [@Falco](https://meta.discourse.org/u/Falco)
#### Post date: [March 25, 2023, 3:12pm UTC](https://meta.discourse.org/t/favicon-not-showing-up/259399/2 "2023-03-25T15:12:39Z")

</div>

@leonardo found something similar recently.

---

<div class="post-metadata">

### Author: ![leonardo](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/leonardo/32/228634_2.png) [@leonardo](https://meta.discourse.org/u/leonardo)
#### Post date: [March 27, 2023, 1:01pm UTC](https://meta.discourse.org/t/favicon-not-showing-up/259399/3 "2023-03-27T13:01:56Z")

</div>

Hi! Wow, this issue seems to seek and find Leonardos.

[http://stuffics.com/](http://stuffics.com/) currently results in “origin is unreachable” from Cloudflare, so I can’t check what the specific symptom with your favicon is.

If it is HTTP 404 when attempting to fetch it, can you try the following safe and idempotent snippet on a Rails console? “Optimized” versions are derivatives of the original which will be untouched; these will just be regenerated.

```ruby
favicon = SiteIconManager.resolve_original(SiteIconManager::ICONS[:favicon])
favicon.optimized_images.each(&:destroy)
SiteIconManager.ensure_optimized!

```

If it does fix it then we’ll have confirmation of identical symptoms and it will aid us in tracking down the underlying cause, so we’d be thankful 🙂
