{"id":8871,"date":"2020-01-18T09:37:33","date_gmt":"2020-01-18T09:37:33","guid":{"rendered":"https:\/\/www.milesweb.in\/hosting-faqs\/?p=8871"},"modified":"2022-02-15T19:18:47","modified_gmt":"2022-02-15T13:48:47","slug":"what-are-the-common-http-errors-and-how-to-troubleshoot-them","status":"publish","type":"post","link":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/","title":{"rendered":"What Are The Common HTTP Errors And How To Troubleshoot Them?"},"content":{"rendered":"<p>When someone tries to access a web server or an application, every server receives an HTTP request and the server responds to this request with a particular HTTP status code. The HTTP status codes consist of three digits and they are classified into five different classes. The class of any HTTP status code can be easily determined by its first digit.<!--more--><\/p>\n<h2><strong>HTTP Status Code Classification:<\/strong><\/h2>\n<ul>\n<li>1xx : Informational<\/li>\n<li>2xx : Success<\/li>\n<li>3xx : Redirection<\/li>\n<li>4xx : Client Error<\/li>\n<li>5xx : Server Error<\/li>\n<\/ul>\n<p>This guide provides ways for troubleshooting the most commonly experienced HTTP error codes \u2013 i.e. the HTTP error codes of status codes 4xx and 5xx. There are many instances that can cause the web server to respond with a particular HTTP error code. Here you will get more information on the most common causes of HTTP error codes and their solutions.<\/p>\n<h2><strong>An Overview On Client And Server Process<\/strong><\/h2>\n<p>The HTTP status codes ranging from 400 to 499 and client errors are caused due to HTTP requests made by a user client \u2013 here user client means a web browser or any other HTTP client. Although these are client related errors, it is important to know which error code is being sent to the user in order to determine if that particular issue can be fixed through any modifications in the server configuration.<\/p>\n<p>HTTP status codes ranging from 500 to 599 and server errors are caused by a web server when it knows that a particular error has occurred or if the server is not able to process a request.<\/p>\n<h2><strong>Common Troubleshooting Tips<\/strong><\/h2>\n<ul>\n<li>When a web browser is used for testing a web server, it is important to refresh the browser after the server modifications are made.<\/li>\n<li>Analyze the server logs for getting more information about how the server is managing the requests. For example, the web servers like Nginx and Apache create two files known as \u2018access.log\u2019 and \u2018error.log\u2019 that can be viewed for necessary information.<\/li>\n<li>It is important to note that the HTTP status code definitions are standardized and implemented by the application that serves the requests. Therefore, the status code that is sent is based on the way in which the server software manages a particular request.<\/li>\n<\/ul>\n<h3><strong>The Most Commonly Encountered HTTP Errors:<\/strong><\/h3>\n<h2><strong>400 Bad Request<\/strong><\/h2>\n<p>The 400 status code also known as the \u2018Bad Request\u2019 error signifies that the HTTP request that was sent to the server consists of invalid syntax.<\/p>\n<p><strong>Here are some instances when a 400 Bad Request error might arise:<\/strong><\/p>\n<ul>\n<li>The user\u2019s cookie that is connected with the site is corrupt. The solution to this issue is cleaning the browser\u2019s cache and cookies.<\/li>\n<li>Distorted request sent because of a faulty browser.<\/li>\n<li>Distorted request sent because of a human error while manually creating HTTP requests (when \u2018curl\u2019 is incorrectly used).<\/li>\n<\/ul>\n<h2><strong>401 Unauthorized<\/strong><\/h2>\n<p>The 401 status code also known as the \u2018Unauthorized\u2019 Error means that a user was accessing a resource that is not authenticated at all or is not correctly authenticated. In this case, the user has to provide the necessary credentials for viewing the protected resource.<\/p>\n<p>An example of this situation is when a 401 Unauthorized error is sent in case a user tries to access a resource that is protected through HTTP authentication. In this situation, the user will get a 401 error code until the valid login credentials are entered to the web server \u2013 username and password (the credentials that are mentioned in the .htpasswd file).<\/p>\n<h2><strong>403 Forbidden<\/strong><\/h2>\n<p>The 403 status code also known as the \u2018Forbidden\u2019 Error signifies that a valid request was made by the user but the server did not serve the request. This happens because of lack of permission for accessing the valid resource. If you unexpectedly encounter a 403 error, you need to know about some general causes that are mentioned below:<\/p>\n<h3><strong>File Permissions<\/strong><\/h3>\n<p>The 403 error usually occurs when a user that is operating the web server process does not have the required permissions for reading the file that is being accessed. Here are some situations for troubleshooting the 403 error:<\/p>\n<ul>\n<li>The user is trying to access the index file of the web server through \u2013 <a href=\"http:\/\/www.examplewebsite.com\/index.html\" target=\"_blank\" rel=\"nofollow noopener\">http:\/\/www.examplewebsite.com\/index.html<\/a><\/li>\n<li>The web server worker process belongs to \u2018www-data\u2019 user.<\/li>\n<li>The index file is located at &#8211; \/user\/share\/nginx\/html\/index.html on the server.<\/li>\n<\/ul>\n<p>If the user encounters a 403 Forbidden error, it is important to make sure that the www-data user has all the necessary permissions for reading the file. It is important to ensure that the \u2018other permissions\u2019 of the file are set to \u2018read\u2019. There are many ways for ensuring this, but the command mentioned below will work in this situation:<\/p>\n<p>sudo chmod o=r \/usr\/share\/nginx\/html\/index.html<\/p>\n<h3><strong>.htaccess<\/strong><\/h3>\n<p>Another likely cause of a 403 error is when the .htaccess file is accessed. The .htaccess file can be utilized for denying the access of some resources for some specific IP addresses or ranges. For instance, if a user encounters a 403 error unexpectedly, it is important to ensure that this error is not caused due to any of the .htaccess file settings.<\/p>\n<h3><strong>Index File Does Not Exist<\/strong><\/h3>\n<p>If a user tries to access a directory that does not consist of a default index file and if the directory listings are not enabled, the 403 forbidden error will be returned by the web server. For instance if the user is trying to access \u2013 <a href=\"http:\/\/www.examplewebsite.com\/emptydir\/\" target=\"_blank\" rel=\"nofollow noopener\">http:\/\/www.examplewebsite.com\/emptydir\/<\/a> and if there is no index file present in \u2013 emptydir directory, the 403 status code error will be returned.<\/p>\n<p>If you want to enable the directory listings, you can do this through your web server configuration.<\/p>\n<h2><strong>404 Not Found<\/strong><\/h2>\n<p>The 404 error code also known as the \u2018Not Found\u2019 error states that the user can communicate with the server but it is not able to find the requested file or resource.<\/p>\n<p>404 errors are cause due to many different situations. If the user unexpectedly receives the 404 bad request error, here are some important questions to think upon for troubleshooting this error:<\/p>\n<ul>\n<li>Does the link that is directed the user to the web server consist of any typographical error?<\/li>\n<li>Has the user entered the wrong URL?<\/li>\n<li>Is the requested file saved in the correct location on the server? Was the resource shifted or deleted on the server?<\/li>\n<li>Does the server configuration have the right document root location?<\/li>\n<li>Does the user incharge of the web server worker process have the necessary privileges to reach the directory where the requested file exists? (Note : Directories must have the read and execute permissions in order to be accessed).<\/li>\n<li>Is the resource being accessed through some symbolic link? In this case, make sure that the web server is configured for allowing symbolic links.<\/li>\n<\/ul>\n<h2><strong>500 Internal Server Error<\/strong><\/h2>\n<p>The 500 status code also known as the \u2018Internal Server\u2019 error means that the server is not able to process the request due to some unidentified reason. At times, this code is displayed when the 5xx errors are more appropriate.<\/p>\n<p>The most common reason for the occurrence of this error is the wrong configuration of the server (example a .htaccess file that is not correctly formed) or if some packages are missing (example when you try to access some PHP file when PHP is not correctly installed).<\/p>\n<h2><strong>502 Bad Gateway<\/strong><\/h2>\n<p>The 502 status code also known as the \u2018Bad Gateway\u2019 error means that the end server is a gateway or a proxy server and it is not able to receive a valid response from the backend servers that should actually complete the request.<\/p>\n<p>In case the server is a reverse proxy server, like if it is a load balancer, here are some important points that should be analyzed:<\/p>\n<ul>\n<li>The backend servers where the HTTP requests are forwarded should be properly configured.<\/li>\n<li>The reverse proxy should be configured correctly with the appropriate backends.<\/li>\n<li>The network connection between the reverse proxy server and the backend servers should be rightly made. If the servers are communicating through other ports, the firewall should not stop the traffic between them.<\/li>\n<li>In case your web application is configured to listen on a socket, it is important to ensure that the socket is placed in the right location and it has the required permissions.<\/li>\n<\/ul>\n<h2><strong>503 Service Unavailable<\/strong><\/h2>\n<p>The 503 status code also known as the \u2018Service Unavailable\u2019 error means that the server is overburdened or it is under maintenance. This error signifies that the service will be made available after a certain period of time.<\/p>\n<p>If the server is not under any maintenance process, this indicates that the server is not equipped with the required CPU or memory resources for managing all the incoming requests or that the web server has to be configured for allowing more users, threads and processes.<\/p>\n<h2><strong>504 Gateway Timeout<\/strong><\/h2>\n<p>The 504 status code also known as the \u2018Gateway Timeout\u2019 error means that the server is a gateway or a proxy server and it is not able to get a response from the backend servers within a particular time period.<\/p>\n<p>This error usually occurs in the following situations:<\/p>\n<ul>\n<li>A poor network connection between the severs.<\/li>\n<li>The backend server that is executing the request is very slow, it has poor performance.<\/li>\n<li>The timeout duration of the gateway or the proxy server is very short.<\/li>\n<\/ul>\n<p>Now that you are aware of the most common HTTP error codes and their solutions, you will be in a better potion to understand and troubleshoot the issues with your applications and web servers.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When someone tries to access a web server or an application, every server receives an HTTP request and the server responds to this request with a particular HTTP status code. The HTTP status codes consist of three digits and they are classified into five different classes. The class of any HTTP status code can be [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":8876,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[41,4],"tags":[1232,1233,681,1230,1231],"class_list":["post-8871","post","type-post","status-publish","format-standard","has-post-thumbnail","placeholder-for-hentry","category-howtos","category-web-hosting-faq","tag-common-http-errors","tag-fix-http-errors","tag-http","tag-http-errors","tag-troubleshoot-http-errors"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What Are The Common HTTP Errors And How To Troubleshoot Them?<\/title>\n<meta name=\"description\" content=\"This article provides easy ways for troubleshooting the most commonly experienced HTTP errors.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What Are The Common HTTP Errors And How To Troubleshoot Them?\" \/>\n<meta property=\"og:description\" content=\"This article provides easy ways for troubleshooting the most commonly experienced HTTP errors.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-18T09:37:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-15T13:48:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/01\/troubleshoot.png\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"445\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ujwala\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ujwala\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/\"},\"author\":{\"name\":\"Ujwala\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8\"},\"headline\":\"What Are The Common HTTP Errors And How To Troubleshoot Them?\",\"datePublished\":\"2020-01-18T09:37:33+00:00\",\"dateModified\":\"2022-02-15T13:48:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/\"},\"wordCount\":1563,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/01\/troubleshoot.png\",\"keywords\":[\"common HTTP errors\",\"fix HTTP errors\",\"HTTP\",\"HTTP errors\",\"troubleshoot HTTP errors\"],\"articleSection\":[\"How-Tos\",\"Web Hosting FAQ\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/\",\"name\":\"What Are The Common HTTP Errors And How To Troubleshoot Them?\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/01\/troubleshoot.png\",\"datePublished\":\"2020-01-18T09:37:33+00:00\",\"dateModified\":\"2022-02-15T13:48:47+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8\"},\"description\":\"This article provides easy ways for troubleshooting the most commonly experienced HTTP errors.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#primaryimage\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/01\/troubleshoot.png\",\"contentUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/01\/troubleshoot.png\",\"width\":800,\"height\":445,\"caption\":\"HTTP errors\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What Are The Common HTTP Errors And How To Troubleshoot Them?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\",\"name\":\"Web Hosting FAQs by MilesWeb\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8\",\"name\":\"Ujwala\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3688a73ea9910afb426b453e227deb5300ca470f5518aac6c3b676a5b0acfee5?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3688a73ea9910afb426b453e227deb5300ca470f5518aac6c3b676a5b0acfee5?s=96&d=blank&r=g\",\"caption\":\"Ujwala\"},\"description\":\"My aim is to create enriching content on topics related to SEO, web hosting and social media. The idea is to elevate the readers to new levels of usability, accessibility and understanding.\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/author\/ujwala\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What Are The Common HTTP Errors And How To Troubleshoot Them?","description":"This article provides easy ways for troubleshooting the most commonly experienced HTTP errors.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/","og_locale":"en_US","og_type":"article","og_title":"What Are The Common HTTP Errors And How To Troubleshoot Them?","og_description":"This article provides easy ways for troubleshooting the most commonly experienced HTTP errors.","og_url":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2020-01-18T09:37:33+00:00","article_modified_time":"2022-02-15T13:48:47+00:00","og_image":[{"width":800,"height":445,"url":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/01\/troubleshoot.png","type":"image\/png"}],"author":"Ujwala","twitter_misc":{"Written by":"Ujwala","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#article","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/"},"author":{"name":"Ujwala","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8"},"headline":"What Are The Common HTTP Errors And How To Troubleshoot Them?","datePublished":"2020-01-18T09:37:33+00:00","dateModified":"2022-02-15T13:48:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/"},"wordCount":1563,"commentCount":0,"image":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/01\/troubleshoot.png","keywords":["common HTTP errors","fix HTTP errors","HTTP","HTTP errors","troubleshoot HTTP errors"],"articleSection":["How-Tos","Web Hosting FAQ"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/","url":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/","name":"What Are The Common HTTP Errors And How To Troubleshoot Them?","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#primaryimage"},"image":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/01\/troubleshoot.png","datePublished":"2020-01-18T09:37:33+00:00","dateModified":"2022-02-15T13:48:47+00:00","author":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8"},"description":"This article provides easy ways for troubleshooting the most commonly experienced HTTP errors.","breadcrumb":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#primaryimage","url":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/01\/troubleshoot.png","contentUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2020\/01\/troubleshoot.png","width":800,"height":445,"caption":"HTTP errors"},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/what-are-the-common-http-errors-and-how-to-troubleshoot-them\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.in\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"What Are The Common HTTP Errors And How To Troubleshoot Them?"}]},{"@type":"WebSite","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website","url":"https:\/\/www.milesweb.in\/hosting-faqs\/","name":"Web Hosting FAQs by MilesWeb","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8","name":"Ujwala","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3688a73ea9910afb426b453e227deb5300ca470f5518aac6c3b676a5b0acfee5?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3688a73ea9910afb426b453e227deb5300ca470f5518aac6c3b676a5b0acfee5?s=96&d=blank&r=g","caption":"Ujwala"},"description":"My aim is to create enriching content on topics related to SEO, web hosting and social media. The idea is to elevate the readers to new levels of usability, accessibility and understanding.","url":"https:\/\/www.milesweb.in\/hosting-faqs\/author\/ujwala\/"}]}},"_links":{"self":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/8871","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=8871"}],"version-history":[{"count":2,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/8871\/revisions"}],"predecessor-version":[{"id":15972,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/8871\/revisions\/15972"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/media\/8876"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=8871"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=8871"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=8871"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}