Broken Avatar after upgrade #6069
Replies: 1 comment
-
| The broken avatar with A few things to check: 1. Verify your The # Make sure this matches your actual deployment URL including protocol BASE_URL=https://plausible.yourdomain.com2. Check if the avatar route is proxied correctly In v3.x, avatars may be served through a different path. If you're using a reverse proxy (Nginx/Caddy), make sure all paths are being forwarded, not just specific ones: location / { proxy_pass http://plausible:8000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; }3. Try clearing stale assets After jumping multiple major versions, stale cached assets can cause issues:
4. Check if it's a Gravatar/external service issue Plausible fetches avatars based on email hashes. If your instance can't reach external services (Gravatar), that could also cause this. Check if your server has outbound internet access. If none of the above helps, check the Plausible server logs for errors around the time of the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I did a chain of upgrades from like 2.0.0 today(to 3.2), and during one of them, I'm not sure which, I got broken avatar. To be honest I'm not even sure how it looked before but not I have that very ugly 'couldn't load' image.

In the console, I see NS_ERROR_CONNECTION_REFSED on /avatar/xxxx call.

Everything else works fine. Any ideas what this is about?
Beta Was this translation helpful? Give feedback.
All reactions