please help.. why I can't browse my website online even though it is already uploaded.? please help..

Dani AI

Generated

Following the thread between , and , the short checklist below collects the measurable checks and fixes that resolve most cases where an uploaded site cannot be reached. It focuses on verifiable diagnostics so the root cause can be narrowed quickly.

Start with DNS/name-resolution checks: confirm the domain actually resolves to an IP and that nameserver/A records are set correctly. Example commands (replace yourdomain.com):

dig +short yourdomain.com
nslookup yourdomain.com
dig +trace yourdomain.com

Verify the HTTP(S) response and the server process. Status codes point to the class of problem (2xx, 3xx, 4xx, 5xx). Helpful commands and checks:

curl -I http://yourdomain.com
curl -I https://yourdomain.com
sudo systemctl status apache2    # or sudo systemctl status nginx
sudo ss -ltnp | grep -E ":80|:443"
ls -la /path/to/document_root

Client-side and extra diagnostics: flush local DNS and browser cache, check the hosts file for overrides, run a traceroute to spot routing issues, and collect exact outputs (dig, curl, traceroute, server error-log excerpts) before contacting a provider. Example utilities:

traceroute yourdomain.com    # macOS/Linux
tracert yourdomain.com       # Windows
ipconfig /flushdns           # Windows
sudo killall -HUP mDNSResponder   # macOS

Echoing ’s point about the web-accessible folder, ensure the correct index file exists and directory/file permissions allow the webserver to read them. When opening a support ticket, include timestamps and the diagnostic outputs above (not credentials) — that lets the provider verify whether the issue is DNS, routing, server config, or an account/hosting-side problem.

Recommended Answers

All 9 Replies

Is it published i need more information whats the site address and how did you upload it ?

I upload it using filezilla and my webhost is forpsi.. at first, everything seems right but when I checked it lastime the browser saying the webpage is not avialable and I have no idea why..

the url is monique-designs.com

Make sure you uploaded your files to your public folder.

Member Avatar for Member #120589

What's wrong with it?

working good as far as i can tell hope you got it fixed up

yeah yes sir .. I have nothing to worry now, since my problem was on my webhost. thnx for the help,.. :case closed:

nO worries sir. the problem is fixed. thanks a lot =).

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.