Troubleshooting website issues
Basic troubleshooting methodology
At HOSTAFRICA, we believe that troubleshooting must be structured to be useful. I find the best method is the “Macro to Micro” approach. This means that you verify the correctness and functionality of the largest factors involved in the issue first as, without these, the problem will not resolve. This is a process of elimination.
With websites, the largest factor is the server on which it runs.
The troubleshooting process:
Is the server up?
Run a ping
test to the server IP address.
Is my website DNS pointing to the server IP?
Use nslookup
or dig
to verify this.
Has DNS propagated successfully?
Use DNS Checker or some other online tool to check this.
Is the web server running?
Verify this by opening your web browser and visiting the server IP address on port 80 for http://ip.address:80
or port 443 for https://ip.address:443
.
Is my website configured?
Create a test page called test.htm on your web server in your website public folder and put the word “TEST” in this file. Try to access this file with https://yourdomain.coke/test.htm
. If you see the word “TEST” in your browser, the site is configured correctly.
Is my coding or type handling correct?
Check the .htaccess
file for any special directives. To test, move/rename the .htaccess
file to “DOT-htacces” and check the site again. If you are running PHP sites, turn on debugging with the .htaccess
or the .user
files (Google has some great articles about this).
If your site partially loads, some of the internal links may be broken.
Check syntax and case, bearing in mind that most web servers are case sensitive, thus the directory called “MyImages” and the directory called “myimages” are two different directories.
Error Messages to help with troubleshooting
When you open the website, check for error messages or events. An event would be that you get a file download instead of a website opening. This could be because of a handler type mismatch. An error would be HTTP 400 or HTTP 500 errors.
I have a shortened list of these from Wikipedia below:
4xx Client errors
This class of status code is intended for situations in which the error seems to have been caused by the client. Except when responding to a HEAD request, the server should include an entity containing an explanation of the error situation, and whether it is a temporary or permanent condition.
These status codes are applicable to any request method. User agents should display any included entity to the user.
- 400 Bad Request
- The server cannot or will not process the request due to an apparent client error (e.g., malformed request syntax, size too large, invalid request message framing, or deceptive request routing).
- 401 Unauthorized (RFC 7235)
- Similar to 403 Forbidden, but specifically for use when authentication is required and has failed or has not yet been provided. The response must include a WWW-Authenticate header field containing a challenge applicable to the requested resource. Note: Some sites issue HTTP 401 when an IP address is banned from the website (usually the website domain) and that specific address is refused permission to access a website.
- 403 Forbidden
- The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account of some sort.
- 404 Not Found
- The requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible.
- 405 Method Not Allowed
- A request method is not supported for the requested resource; for example, a GET request on a form that requires data to be presented via POST, or a PUT request on a read-only resource.
- 406 Not Acceptable
- The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.
- 407 Proxy Authentication Required (RFC 7235)
- The client must first authenticate itself with the proxy.
- 408 Request Timeout
- The server timed out waiting for the request. According to HTTP specifications: “The client did not produce a request within the time that the server was prepared to wait. The client MAY repeat the request without modifications at any later time.”
- 409 Conflict
- Indicates that the request could not be processed because of conflict in the request, such as an edit conflict between multiple simultaneous updates.
- 410 Gone
- Indicates that the resource requested is no longer available and will not be available again. This should be used when a resource has been intentionally removed and the resource should be purged. Upon receiving a 410 status code, the client should not request the resource in the future. Clients such as search engines should remove the resource from their indices. Most use cases do not require clients and search engines to purge the resource, and a “404 Not Found” may be used instead.
- 411 Length Required
- The request did not specify the length of its content, which is required by the requested resource.
- 412 Precondition Failed (RFC 7232)
- The server does not meet one of the preconditions that the requester put on the request.
- 413 Payload Too Large (RFC 7231)
- The request is larger than the server is willing or able to process. Previously called “Request Entity Too Large”.
- 414 URI Too Long (RFC 7231)
- The URI provided was too long for the server to process. Often the result of too much data being encoded as a query-string of a GET request, in which case it should be converted to a POST request. Called “Request-URI Too Long” previously.
- 415 Unsupported Media Type
- The request entity has a media type which the server or resource does not support. For example, the client uploads an image as image/svg+xml, but the server requires that images use a different format.
- 416 Range Not Satisfiable (RFC 7233)
- The client has asked for a portion of the file (byte serving), but the server cannot supply that portion. For example, if the client asked for a part of the file that lies beyond the end of the file. Called “Requested Range Not Satisfiable” previously.
- 417 Expectation Failed
- The server cannot meet the requirements of the Expect request-header field.
- 418 I’m a teapot (RFC 2324, RFC 7168)
- This code was defined in 1998 as one of the traditional IETF April Fools’ jokes, in RFC 2324, Hyper Text Coffee Pot Control Protocol, and is not expected to be implemented by actual HTTP servers. The RFC specifies this code should be returned by teapots requested to brew coffee. This HTTP status is used as an Easter egg in some websites, including Google.com.
- 421 Misdirected Request (RFC 7540)
- The request was directed at a server that is not able to produce a response< (for example because of connection reuse).
- 422 Unprocessable Entity (WebDAV; RFC 4918)
- The request was well-formed but was unable to be followed due to semantic errors.
- 423 Locked (WebDAV; RFC 4918)
- The resource that is being accessed is locked.
- 424 Failed Dependency (WebDAV; RFC 4918)
- The request failed because it depended on another request and that request failed (e.g., a PROPPATCH).
- 426 Upgrade Required
- The client should switch to a different protocol such as TLS/1.0, given in the Upgrade header field.
- 428 Precondition Required (RFC 6585)
- The origin server requires the request to be conditional. Intended to prevent the ‘lost update’ problem, where a client GETs a resource’s state, modifies it, and PUTs it back to the server, when meanwhile a third party has modified the state on the server, leading to a conflict.
- 429 Too Many Requests (RFC 6585)
- The user has sent too many requests in a given amount of time. Intended for use with rate-limiting schemes.
- 431 Request Header Fields Too Large (RFC 6585)
- The server is unwilling to process the request because either an individual header field, or all the header fields collectively, are too large.
- 451 Unavailable For Legal Reasons (RFC 7725)
- A server operator has received a legal demand to deny access to a resource or to a set of resources that includes the requested resource. The code 451 was chosen as a reference to the novel Fahrenheit 451 (see the Acknowledgements in the RFC).
5xx Server errors
The server failed to fulfil a request.
Response status codes beginning with the digit “5” indicate cases in which the server is aware that it has encountered an error or is otherwise incapable of performing the request.
Except when responding to a HEAD request, the server should include an entity containing an explanation of the error situation, and indicate whether it is a temporary or permanent condition. Likewise, user agents should display any included entity to the user.
These response codes are applicable to any request method.
- 500 Internal Server Error
- A generic error message, given when an unexpected condition was encountered and no more specific message is suitable.
- 501 Not Implemented
- The server either does not recognize the request method, or it lacks the ability to fulfil the request. Usually this implies future availability (e.g., a new feature of a web-service API).
- 502 Bad Gateway
- The server was acting as a gateway or proxy and received an invalid response from the upstream server.
- 503 Service Unavailable
- The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state.
- 504 Gateway Timeout
- The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.
- 505 HTTP Version Not Supported
- The server does not support the HTTP protocol version used in the request.
- 506 Variant Also Negotiates (RFC 2295)
- Transparent content negotiation for the request results in a circular reference.
- 507 Insufficient Storage (WebDAV RFC 4918)
- The server is unable to store the representation needed to complete the request.
- 508 Loop Detected (WebDAV RFC 5842)
- The server detected an infinite loop while processing the request (sent in lieu of 208 Already Reported).
- 510 Not Extended (RFC 2774)
- Further extensions to the request are required for the server to fulfil it.
- 511 Network Authentication Required (RFC 6585)
- The client needs to authenticate to gain network access. Intended for use by intercepting proxies used to control access to the network (e.g., “captive portals” used to require agreement to Terms of Service before granting full Internet access via a Wi-Fi hotspot).
Happy Hosting!