My Github website suddenly broke most images #158445
BodyHello, I've hosted my personal website in Github a few months ago: link to website It's a simple website, completely static, and everything was working normally until a few days, when I noticed that most of the images are broken. Nothing changed in my Readme.md file nor my image files or directories. I double checked the commits log and there was nothing new. I appreciate any help or solutions that you may share! Thanks Guidelines
|
Replies: 3 comments 4 replies
|
Welcome to the GitHub Community, @Fertmeneses, we're happy you're here! You are more likely to get a useful response if you are posting your questions in the applicable category and are explicit about what your project entails--giving a few more details might help someone give you a nudge in the right direction. I've gone ahead and moved it for you. Good luck! |
|
GitHub has started rate-limiting raw.githubusercontent.com, so pages that hot-link many images from that domain hit the new limit and the server returns HTTP 429—hence the broken thumbnails even though a single image still opens in a new tab. Quick fix # instead of this

# do this (move img/ into your Pages site and use a relative path)
Files served from Alternatives
Push the change, give the cache a minute, and the pictures should reappear. |
|
Yeah, I’ve had that happen before. In my case, it was an issue with how the image paths were written. Make sure they’re case-sensitive and relative to the repo root. Also, double-check that the images actually pushed to GitHub correctly. Sometimes they don’t upload even if it looks like they did. It’s like there are so many flavors of issues that can pop up when working with GitHub Pages! |
GitHub has started rate-limiting raw.githubusercontent.com, so pages that hot-link many images from that domain hit the new limit and the server returns HTTP 429—hence the broken thumbnails even though a single image still opens in a new tab.
Quick fix
Files served from
yourname.github.ioaren’t throttled, so everything loads normally again once you commit the move.Alternatives
https://cdn.jsdelivr.net/gh/USER/REPO@branch/img/logo.pngloa…