My website isnt working #154867
-
Select Topic AreaQuestion Bodyhi so i made a "website" following BroCode's tutorial (https://www.youtube.com/watch?v=HGTJBPNC-Gw) and "hosted" my website on github using this video:https://www.youtube.com/watch?v=e5AwNU3Y2es however when i go the website im met with this: i think im doing smth wrong but i followed the host tutorial step by step so please help 😭 🙏 my website: https://fridgedoors.github.io/website/ |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 5 replies
-
|
Hi @fridgedoors, Taking a look at your repo I noticed that the structure is wrong, you need an Your structure is as follows:
This is how it should be:
So basically you have to delete the |
Beta Was this translation helpful? Give feedback.
-
|
Welcome to the GitHub Community, @fridgedoors , we're happy you're here! You are more likely to get a useful response if you are posting your question(s) in the applicable category. Check out this Guide on how to post in the right category. It'll ensure your questions and discussions reach the right people faster! This particular discussion belongs in the Pages category, I've gone ahead and moved it for you. Good luck! |
Beta Was this translation helpful? Give feedback.
-
|
I had the same issue on my website (Carpet Heroes) turns out my |
Beta Was this translation helpful? Give feedback.
-
|
Website issues can be really frustrating, especially when everything seems fine on your end but the site still won’t load properly. I’d recommend checking hosting status, DNS settings, and any recent plugin or theme changes first — many times the issue is something small but technical. In industries like Vending Media, where digital systems and smart vending platforms rely heavily on smooth website performance, keeping your site optimized and regularly maintained makes a huge difference. |
Beta Was this translation helpful? Give feedback.
-
|
Hey, first check your DNS settings and hosting status—sometimes the issue is from the server side or cache. |
Beta Was this translation helpful? Give feedback.
-
|
Sounds like it could be a DNS, hosting, or cache issue — worth checking if it’s down for everyone or just you. |
Beta Was this translation helpful? Give feedback.
-
|
قد يكون سبب توقف الموقع مشكلة في الاستضافة أو أخطاء في ملفات النظام أو حتى انتهاء صلاحية الدومين. أنصحك أولًا بفحص سجل الأخطاء والتأكد من إعدادات DNS والاستضافة. |
Beta Was this translation helpful? Give feedback.
-
|
If your website suddenly stops working, first check things like hosting status, DNS issues, SSL certificates, or recent plugin/theme updates. I had a similar issue while working on a project related to immigration processing analytics called PERM Timeline, and the problem turned out to be a caching conflict after a server update. Sometimes even small backend changes can break site functionality unexpectedly. |
Beta Was this translation helpful? Give feedback.

Hi @fridgedoors,
Taking a look at your repo I noticed that the structure is wrong, you need an
index.htmlin the root.Your structure is as follows:
/website├── /.github/workflows└── /HTML├── /audio├── /images├── index.html└── lyrics.htmlThis is how it should be:
/website├── /.github/workflows├── /audio├── /images├── index.html└── lyrics.htmlSo basically you have to delete the
HTMLfolder and put its contents in the root as shown above.