{"id":7356,"date":"2026-09-14T06:47:17","date_gmt":"2026-09-14T06:47:17","guid":{"rendered":"https:\/\/checksitestatus.com\/?p=7356"},"modified":"2026-09-14T06:53:19","modified_gmt":"2026-09-14T06:53:19","slug":"http-browser-error-codes","status":"publish","type":"post","link":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/","title":{"rendered":"HTTP &#038; browser error codes"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"7356\" class=\"elementor elementor-7356\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-19595bf elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"19595bf\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6bf26e4\" data-id=\"6bf26e4\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b9fb9e0 elementor-widget elementor-widget-text-editor\" data-id=\"b9fb9e0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p dir=\"ltr\">The error on your screen is not one thing. It&#8217;s one of two completely different things wearing the same disguise: a blank page with some text on it.<br \/><br \/><\/p><p dir=\"ltr\">One kind comes from the server, in the form of an HTTP status code, a number the server sends deliberately to describe what happened. The other kind comes from your own browser, and it means the request never got a proper answer at all: no server reached, no code returned, nothing to report except that the attempt itself failed.<br \/><br \/><\/p><p dir=\"ltr\">Mixing these two up is the single most common reason people troubleshoot the wrong thing. If your browser never reached a server, there&#8217;s no application bug to fix. If the server answered with a 500, there&#8217;s no local network setting that will help. Knowing which kind you&#8217;re looking at tells you where to even start.<br \/><br \/><\/p><h2 dir=\"ltr\"><strong>The tell: does it have a number, and whose number is it<\/strong><\/h2><p dir=\"ltr\">HTTP status codes are three-digit numbers the server sends back as part of its response: 404, 500, 503, and so on. If you see a number like that on the error page, a server answered your request, which means the server, or something sitting directly in front of it, is reachable and working well enough to respond.<br \/><br \/><\/p><p dir=\"ltr\">Browser error codes look different. Chrome shows things like <code>ERR_CONNECTION_REFUSED<\/code> or <code>DNS_PROBE_FINISHED_NXDOMAIN<\/code>. Firefox tends to skip codes entirely and show plain sentences like &#8220;Hmm, we&#8217;re having trouble finding that site.&#8221; Safari does the same, with messages like &#8220;Safari Can&#8217;t Find the Server.&#8221; These aren&#8217;t server responses. They&#8217;re your browser telling you it gave up before a server ever entered the picture, whether because the domain didn&#8217;t resolve, the connection timed out, or the certificate handshake failed.<br \/><br \/><\/p><p dir=\"ltr\">That distinction, server responded versus browser gave up, is the whole diagnostic shortcut. A status code means look at the application or the server configuration. A browser error means look at DNS, the network, or the certificate, because the server was never involved.<br \/><br \/><\/p><h2 dir=\"ltr\"><strong>Browser error codes, decoded<\/strong><\/h2><p dir=\"ltr\">These are the ones you&#8217;ll actually run into, across Chrome, Edge, and other Chromium browsers, which show the most explicit codes of the major browsers.<\/p><div dir=\"ltr\"><table><thead><tr><th scope=\"col\">Error<\/th><th scope=\"col\">What actually happened<\/th><th scope=\"col\">Where to look<\/th><\/tr><\/thead><tbody><tr><td><code>ERR_CONNECTION_REFUSED<\/code><\/td><td>A server was found but nothing accepted the connection on that port<\/td><td>Web server stopped, wrong port, firewall dropping it<\/td><\/tr><tr><td><code>ERR_CONNECTION_TIMED_OUT<\/code><\/td><td>The request went out and nothing answered in time<\/td><td>Server overloaded or down, network congestion, firewall silently dropping packets<\/td><\/tr><tr><td><code>ERR_CONNECTION_RESET<\/code><\/td><td>The connection was established, then abruptly closed<\/td><td>Server crashed mid-response, a proxy or firewall killed the connection<\/td><\/tr><tr><td><code>ERR_NAME_NOT_RESOLVED<\/code> \/ <code>DNS_PROBE_FINISHED_NXDOMAIN<\/code><\/td><td>The domain name couldn&#8217;t be translated to an IP address<\/td><td>Domain expired, DNS records missing or misconfigured, typo in the URL<\/td><\/tr><tr><td><code>ERR_ADDRESS_UNREACHABLE<\/code><\/td><td>The IP address exists but there&#8217;s no route to it<\/td><td>Network-level routing failure, sometimes a local firewall rule<\/td><\/tr><tr><td><code>ERR_SSL_PROTOCOL_ERROR<\/code><\/td><td>The encrypted handshake failed before any page data was exchanged<\/td><td>Misconfigured SSL on the server, an outdated browser, or security software intercepting HTTPS traffic<\/td><\/tr><tr><td><code>NET::ERR_CERT_AUTHORITY_INVALID<\/code> or similar CERT errors<\/td><td>The certificate presented isn&#8217;t trusted<\/td><td>Expired or self-signed certificate, or your device&#8217;s clock is wrong<\/td><\/tr><tr><td><code>ERR_TOO_MANY_REDIRECTS<\/code><\/td><td>The site is redirecting in a loop<\/td><td>Misconfigured HTTPS redirect, conflicting caching rules, a plugin fighting with server config<\/td><\/tr><tr><td><code>ERR_EMPTY_RESPONSE<\/code><\/td><td>The server accepted the connection then sent nothing back<\/td><td>Server process crashed while handling the request<\/td><\/tr><tr><td><code>ERR_INTERNET_DISCONNECTED<\/code><\/td><td>Your device has no network connection at all<\/td><td>Local Wi-Fi or ethernet issue, nothing to do with the site<\/td><\/tr><\/tbody><\/table><\/div><p dir=\"ltr\">Firefox and Safari describe most of these same underlying failures in plain language rather than a code: &#8220;Secure Connection Failed&#8221; covers the same ground as an SSL protocol error, and &#8220;This site can&#8217;t be reached&#8221; is the general-purpose message covering connection refusals, timeouts, and DNS failures alike. We&#8217;ve written a full walkthrough of that specific message and what causes it in our guide to <a href=\"https:\/\/checksitestatus.com\/this-site-cant-be-reached-error\/\">the &#8220;this site can&#8217;t be reached&#8221; error<\/a>, since it&#8217;s the single most common browser error people search for by name.<br \/><br \/><\/p><h2 dir=\"ltr\"><strong>HTTP status codes, briefly<\/strong><\/h2><p dir=\"ltr\">Status codes group into ranges that tell you the category before you even look at the specific number.<br \/><br \/><\/p><p dir=\"ltr\"><strong>2xx<\/strong> means success. You&#8217;ll rarely see these as an error, since they mean the request worked, though a 200 with broken or incomplete content on the page is its own quiet problem worth knowing about.<br \/><br \/><\/p><p dir=\"ltr\"><strong>3xx<\/strong> means redirection. The resource moved, and the browser is being told where to go instead. Usually invisible unless the redirect chain breaks or loops.<br \/><br \/><\/p><p dir=\"ltr\"><strong>4xx<\/strong> means the request itself was the problem, from the browser&#8217;s side. A 404 means the specific page doesn&#8217;t exist. A 403 means access was denied. A 429 means too many requests were sent too quickly. These are not server failures; they&#8217;re the server correctly telling you that what was asked for is unavailable or not allowed.<br \/><br \/><\/p><p dir=\"ltr\"><strong>5xx<\/strong> means the server tried to help and failed while doing it. A 500 means the application crashed while handling the request. A 502 means a proxy got an invalid response from whatever sits behind it. A 503 means the server is deliberately refusing, usually overload or maintenance. A 504 means the upstream took too long to answer. These are server-side, and nothing on your end will fix them.<br \/><br \/><\/p><p dir=\"ltr\">The 502 and 504 pair trips people up constantly because both point at the same layer, the service behind your web server, and differ only in whether that layer answered badly or didn&#8217;t answer fast enough. We&#8217;ve broken down exactly <a href=\"https:\/\/checksitestatus.com\/what-does-502-bad-gateway-mean\/\">what a 502 bad gateway means and how to fix it<\/a>, including how it differs from a 504 timeout. If your site runs behind Cloudflare specifically, the same category of failure shows up as 521, 522, or 523, each pointing at a slightly different point in the connection to your origin server rather than a generic gateway problem.<br \/><br \/><\/p><p dir=\"ltr\">For the complete numbered list covering every status code in regular use, our <a href=\"https:\/\/checksitestatus.com\/http-status-codes-explained\/\">full HTTP status code reference<\/a> is the place to look them up one by one; this piece is about telling the two families apart rather than cataloguing every code in each.<br \/><br \/><\/p><h2 dir=\"ltr\"><strong>The one that fools everyone: a 200 that isn&#8217;t actually fine<\/strong><\/h2><p dir=\"ltr\">Status codes and browser errors both assume something clear either worked or didn&#8217;t. The case that slips past both is a 200 status code on a page that&#8217;s actually broken: a blank template, a JavaScript error that stops the page rendering, missing content, or a hacked page serving something other than what it should.<br \/><br \/><\/p><p dir=\"ltr\">Nothing in the address bar tells you this happened. The browser got a successful response and displayed it faithfully; the content is just wrong. Catching this requires checking what&#8217;s actually on the page rather than just whether a response came back at all, which is a different kind of monitoring than status codes or connection errors can offer on their own.<br \/><br \/><\/p><h2 dir=\"ltr\"><strong>Diagnosing from the error alone<\/strong><\/h2><p dir=\"ltr\"><strong>A short decision path, working from what you actually see:<\/strong><\/p><p dir=\"ltr\">If the error has no number and mentions DNS, the site, or &#8220;can&#8217;t be reached,&#8221; start with your own connection. Try the site on mobile data. If it loads there, the problem is local to your device, browser, or network rather than the site itself.<br \/><br \/><\/p><p dir=\"ltr\">If the error mentions a certificate or &#8220;not secure,&#8221; check the date and time on your device first, since a wrong clock is a surprisingly common cause, then check whether the issue follows you to a different network.<br \/><br \/><\/p><p dir=\"ltr\">If you see a 4xx number, the request reached the server and was declined or not found. Check the URL for typos, and know that this isn&#8217;t a server health problem.<br \/><br \/><\/p><p dir=\"ltr\">If you see a 5xx number, the server is reachable but struggling or broken. Before you start debugging, it&#8217;s worth confirming the problem isn&#8217;t happening to everyone. Running the URL through an independent checker settles that in seconds and points you toward the right fix instead of a guess.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3fdbf8e elementor-widget elementor-widget-accordion\" data-id=\"3fdbf8e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"accordion.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-accordion\">\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-6691\" class=\"elementor-tab-title\" data-tab=\"1\" role=\"button\" aria-controls=\"elementor-tab-content-6691\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><i class=\"fas fa-plus\"><\/i><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><i class=\"fas fa-minus\"><\/i><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">What's the difference between an HTTP error and a browser error?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-6691\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"1\" role=\"region\" aria-labelledby=\"elementor-tab-title-6691\"><p dir=\"ltr\">An HTTP error is a status code the server deliberately sends back, meaning the server was reached and responded. A browser error means your browser gave up before getting any response at all, usually because of a DNS failure, a connection timeout, or a certificate problem. If you see a three-digit number, the server answered. If you see a named error like a connection refused message, it never got that far.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-6692\" class=\"elementor-tab-title\" data-tab=\"2\" role=\"button\" aria-controls=\"elementor-tab-content-6692\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><i class=\"fas fa-plus\"><\/i><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><i class=\"fas fa-minus\"><\/i><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">What does ERR_CONNECTION_TIMED_OUT mean?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-6692\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"2\" role=\"region\" aria-labelledby=\"elementor-tab-title-6692\"><p dir=\"ltr\">Your browser sent a request and never received a response within the allowed time. This can mean the server is overloaded or down, that a firewall along the way is silently dropping the connection rather than rejecting it outright, or that your own network has a routing problem. It&#8217;s different from a fast, explicit refusal, which points more specifically at a stopped service.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-6693\" class=\"elementor-tab-title\" data-tab=\"3\" role=\"button\" aria-controls=\"elementor-tab-content-6693\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><i class=\"fas fa-plus\"><\/i><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><i class=\"fas fa-minus\"><\/i><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Why do I see a certificate error only on some websites?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-6693\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"3\" role=\"region\" aria-labelledby=\"elementor-tab-title-6693\"><p dir=\"ltr\">Usually because that specific site&#8217;s SSL certificate has expired, is misconfigured, or was issued in a way your browser doesn&#8217;t trust, such as a self-signed certificate. It can also happen if your device&#8217;s date and time are wrong, since certificate validity is checked against your system clock, which is worth ruling out before assuming the site itself is at fault.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-6694\" class=\"elementor-tab-title\" data-tab=\"4\" role=\"button\" aria-controls=\"elementor-tab-content-6694\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><i class=\"fas fa-plus\"><\/i><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><i class=\"fas fa-minus\"><\/i><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Does a 404 error mean the whole website is down?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-6694\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"4\" role=\"region\" aria-labelledby=\"elementor-tab-title-6694\"><p dir=\"ltr\">No. A 404 means the specific page you requested doesn&#8217;t exist at that address, while the server itself is working fine and responding normally to other pages. This is different from a 5xx error or a connection failure, both of which indicate a broader problem rather than one missing page.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-6695\" class=\"elementor-tab-title\" data-tab=\"5\" role=\"button\" aria-controls=\"elementor-tab-content-6695\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><i class=\"fas fa-plus\"><\/i><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><i class=\"fas fa-minus\"><\/i><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Why does a status code sometimes appear even though the page looks broken?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-6695\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"5\" role=\"region\" aria-labelledby=\"elementor-tab-title-6695\"><p dir=\"ltr\">Because a status code only confirms the server sent a response; it says nothing about whether that response was correct. A 200 can accompany a blank page, a partially loaded layout, or injected content, since the code and the content are generated separately and the browser only checks that a response arrived, not that it&#8217;s the right one.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<script type=\"application\/ld+json\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@type\":\"FAQPage\",\"mainEntity\":[{\"@type\":\"Question\",\"name\":\"What's the difference between an HTTP error and a browser error?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p dir=\\\"ltr\\\">An HTTP error is a status code the server deliberately sends back, meaning the server was reached and responded. A browser error means your browser gave up before getting any response at all, usually because of a DNS failure, a connection timeout, or a certificate problem. If you see a three-digit number, the server answered. If you see a named error like a connection refused message, it never got that far.<\\\/p>\"}},{\"@type\":\"Question\",\"name\":\"What does ERR_CONNECTION_TIMED_OUT mean?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p dir=\\\"ltr\\\">Your browser sent a request and never received a response within the allowed time. This can mean the server is overloaded or down, that a firewall along the way is silently dropping the connection rather than rejecting it outright, or that your own network has a routing problem. It&#8217;s different from a fast, explicit refusal, which points more specifically at a stopped service.<\\\/p>\"}},{\"@type\":\"Question\",\"name\":\"Why do I see a certificate error only on some websites?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p dir=\\\"ltr\\\">Usually because that specific site&#8217;s SSL certificate has expired, is misconfigured, or was issued in a way your browser doesn&#8217;t trust, such as a self-signed certificate. It can also happen if your device&#8217;s date and time are wrong, since certificate validity is checked against your system clock, which is worth ruling out before assuming the site itself is at fault.<\\\/p>\"}},{\"@type\":\"Question\",\"name\":\"Does a 404 error mean the whole website is down?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p dir=\\\"ltr\\\">No. A 404 means the specific page you requested doesn&#8217;t exist at that address, while the server itself is working fine and responding normally to other pages. This is different from a 5xx error or a connection failure, both of which indicate a broader problem rather than one missing page.<\\\/p>\"}},{\"@type\":\"Question\",\"name\":\"Why does a status code sometimes appear even though the page looks broken?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p dir=\\\"ltr\\\">Because a status code only confirms the server sent a response; it says nothing about whether that response was correct. A 200 can accompany a blank page, a partially loaded layout, or injected content, since the code and the content are generated separately and the browser only checks that a response arrived, not that it&#8217;s the right one.<\\\/p>\"}}]}<\/script>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f3d147e elementor-widget elementor-widget-text-editor\" data-id=\"f3d147e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<h2 dir=\"ltr\"><strong>The short version<\/strong><\/h2><p dir=\"ltr\">A number means the server spoke. A named error means it never got the chance to. That single distinction points you at the right fix faster than reading the error message itself usually does.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>The error on your screen is not one thing. It&#8217;s one of two completely different things wearing the same disguise: a blank page with some text on it. One kind comes from the server, in the form of an HTTP status code, a number the server sends deliberately to describe what happened. The other kind [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":7357,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22],"tags":[494,489,496,495,491,490,492,400,497,493],"class_list":["post-7356","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-website","tag-4xx-vs-5xx-errors","tag-browser-error-codes","tag-certificate-error-browser","tag-connection-timed-out-fix","tag-dns_probe_finished_nxdomain","tag-err_connection_refused","tag-err_ssl_protocol_error","tag-http-status-codes","tag-site-cant-be-reached","tag-website-error-troubleshooting"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Confused by an error code? Learn the difference between HTTP status codes and browser errors like DNS_PROBE and ERR_CONNECTION_REFUSED, and how to fix each.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"RK\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_FR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Check Site Status - Free Website Down Checker\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"HTTP Status Codes vs Browser Error Codes Explained\" \/>\n\t\t<meta property=\"og:description\" content=\"Confused by an error code? Learn the difference between HTTP status codes and browser errors like DNS_PROBE and ERR_CONNECTION_REFUSED, and how to fix each.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/checksitestatus.com\/wp-content\/uploads\/2023\/03\/checksitestatus-Logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/checksitestatus.com\/wp-content\/uploads\/2023\/03\/checksitestatus-Logo.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-09-14T06:47:17+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-09-14T06:53:19+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"HTTP Status Codes vs Browser Error Codes Explained\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Confused by an error code? Learn the difference between HTTP status codes and browser errors like DNS_PROBE and ERR_CONNECTION_REFUSED, and how to fix each.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/checksitestatus.com\/wp-content\/uploads\/2023\/03\/checksitestatus-Logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#blogposting\",\"name\":\"HTTP Status Codes vs Browser Error Codes Explained\",\"headline\":\"HTTP &#038; browser error codes\",\"author\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/author\\\/rk\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/checksitestatus.com\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/HTTP-browser-error-codes.jpg\",\"width\":1920,\"height\":1080,\"caption\":\"HTTP & browser error codes\"},\"datePublished\":\"2026-09-14T06:47:17+00:00\",\"dateModified\":\"2026-09-14T06:53:19+00:00\",\"inLanguage\":\"fr-FR\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#webpage\"},\"articleSection\":\"Website, 4xx vs 5xx errors, browser error codes, certificate error browser, connection timed out fix, DNS_PROBE_FINISHED_NXDOMAIN, ERR_CONNECTION_REFUSED, ERR_SSL_PROTOCOL_ERROR, http status codes, site can't be reached, website error troubleshooting\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/checksitestatus.com\\\/fr\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/category\\\/website\\\/#listItem\",\"name\":\"Website\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/category\\\/website\\\/#listItem\",\"position\":2,\"name\":\"Website\",\"item\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/category\\\/website\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#listItem\",\"name\":\"HTTP &#038; browser error codes\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#listItem\",\"position\":3,\"name\":\"HTTP &#038; browser error codes\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/category\\\/website\\\/#listItem\",\"name\":\"Website\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/#organization\",\"name\":\"Is website down right now?\",\"description\":\"Free Website Down Checker\",\"url\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/checksitestatus.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/checksitestatus-Logo.png\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#organizationLogo\",\"width\":240,\"height\":60,\"caption\":\"Logo\"},\"image\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/author\\\/rk\\\/#author\",\"url\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/author\\\/rk\\\/\",\"name\":\"RK\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8a9e75ff1bec09417cc4cd6adad5c478179ebbfaada56c83be981dedb4a7952f?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"RK\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#webpage\",\"url\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/\",\"name\":\"HTTP Status Codes vs Browser Error Codes Explained\",\"description\":\"Confused by an error code? Learn the difference between HTTP status codes and browser errors like DNS_PROBE and ERR_CONNECTION_REFUSED, and how to fix each.\",\"inLanguage\":\"fr-FR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/author\\\/rk\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/author\\\/rk\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/checksitestatus.com\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/HTTP-browser-error-codes.jpg\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#mainImage\",\"width\":1920,\"height\":1080,\"caption\":\"HTTP & browser error codes\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/http-browser-error-codes\\\/#mainImage\"},\"datePublished\":\"2026-09-14T06:47:17+00:00\",\"dateModified\":\"2026-09-14T06:53:19+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/\",\"name\":\"Is website down right now?\",\"description\":\"Free Website Down Checker\",\"inLanguage\":\"fr-FR\",\"publisher\":{\"@id\":\"https:\\\/\\\/checksitestatus.com\\\/fr\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"HTTP Status Codes vs Browser Error Codes Explained","description":"Confused by an error code? Learn the difference between HTTP status codes and browser errors like DNS_PROBE and ERR_CONNECTION_REFUSED, and how to fix each.","canonical_url":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#blogposting","name":"HTTP Status Codes vs Browser Error Codes Explained","headline":"HTTP &#038; browser error codes","author":{"@id":"https:\/\/checksitestatus.com\/fr\/author\/rk\/#author"},"publisher":{"@id":"https:\/\/checksitestatus.com\/fr\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/checksitestatus.com\/wp-content\/uploads\/2026\/09\/HTTP-browser-error-codes.jpg","width":1920,"height":1080,"caption":"HTTP & browser error codes"},"datePublished":"2026-09-14T06:47:17+00:00","dateModified":"2026-09-14T06:53:19+00:00","inLanguage":"fr-FR","mainEntityOfPage":{"@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#webpage"},"isPartOf":{"@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#webpage"},"articleSection":"Website, 4xx vs 5xx errors, browser error codes, certificate error browser, connection timed out fix, DNS_PROBE_FINISHED_NXDOMAIN, ERR_CONNECTION_REFUSED, ERR_SSL_PROTOCOL_ERROR, http status codes, site can't be reached, website error troubleshooting"},{"@type":"BreadcrumbList","@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/checksitestatus.com\/fr#listItem","position":1,"name":"Home","item":"https:\/\/checksitestatus.com\/fr","nextItem":{"@type":"ListItem","@id":"https:\/\/checksitestatus.com\/fr\/category\/website\/#listItem","name":"Website"}},{"@type":"ListItem","@id":"https:\/\/checksitestatus.com\/fr\/category\/website\/#listItem","position":2,"name":"Website","item":"https:\/\/checksitestatus.com\/fr\/category\/website\/","nextItem":{"@type":"ListItem","@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#listItem","name":"HTTP &#038; browser error codes"},"previousItem":{"@type":"ListItem","@id":"https:\/\/checksitestatus.com\/fr#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#listItem","position":3,"name":"HTTP &#038; browser error codes","previousItem":{"@type":"ListItem","@id":"https:\/\/checksitestatus.com\/fr\/category\/website\/#listItem","name":"Website"}}]},{"@type":"Organization","@id":"https:\/\/checksitestatus.com\/fr\/#organization","name":"Is website down right now?","description":"Free Website Down Checker","url":"https:\/\/checksitestatus.com\/fr\/","logo":{"@type":"ImageObject","url":"https:\/\/checksitestatus.com\/wp-content\/uploads\/2023\/03\/checksitestatus-Logo.png","@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#organizationLogo","width":240,"height":60,"caption":"Logo"},"image":{"@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/checksitestatus.com\/fr\/author\/rk\/#author","url":"https:\/\/checksitestatus.com\/fr\/author\/rk\/","name":"RK","image":{"@type":"ImageObject","@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/8a9e75ff1bec09417cc4cd6adad5c478179ebbfaada56c83be981dedb4a7952f?s=96&d=mm&r=g","width":96,"height":96,"caption":"RK"}},{"@type":"WebPage","@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#webpage","url":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/","name":"HTTP Status Codes vs Browser Error Codes Explained","description":"Confused by an error code? Learn the difference between HTTP status codes and browser errors like DNS_PROBE and ERR_CONNECTION_REFUSED, and how to fix each.","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/checksitestatus.com\/fr\/#website"},"breadcrumb":{"@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#breadcrumblist"},"author":{"@id":"https:\/\/checksitestatus.com\/fr\/author\/rk\/#author"},"creator":{"@id":"https:\/\/checksitestatus.com\/fr\/author\/rk\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/checksitestatus.com\/wp-content\/uploads\/2026\/09\/HTTP-browser-error-codes.jpg","@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#mainImage","width":1920,"height":1080,"caption":"HTTP & browser error codes"},"primaryImageOfPage":{"@id":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/#mainImage"},"datePublished":"2026-09-14T06:47:17+00:00","dateModified":"2026-09-14T06:53:19+00:00"},{"@type":"WebSite","@id":"https:\/\/checksitestatus.com\/fr\/#website","url":"https:\/\/checksitestatus.com\/fr\/","name":"Is website down right now?","description":"Free Website Down Checker","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/checksitestatus.com\/fr\/#organization"}}]},"og:locale":"fr_FR","og:site_name":"Check Site Status - Free Website Down Checker","og:type":"article","og:title":"HTTP Status Codes vs Browser Error Codes Explained","og:description":"Confused by an error code? Learn the difference between HTTP status codes and browser errors like DNS_PROBE and ERR_CONNECTION_REFUSED, and how to fix each.","og:url":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/","og:image":"https:\/\/checksitestatus.com\/wp-content\/uploads\/2023\/03\/checksitestatus-Logo.png","og:image:secure_url":"https:\/\/checksitestatus.com\/wp-content\/uploads\/2023\/03\/checksitestatus-Logo.png","article:published_time":"2026-09-14T06:47:17+00:00","article:modified_time":"2026-09-14T06:53:19+00:00","twitter:card":"summary_large_image","twitter:title":"HTTP Status Codes vs Browser Error Codes Explained","twitter:description":"Confused by an error code? Learn the difference between HTTP status codes and browser errors like DNS_PROBE and ERR_CONNECTION_REFUSED, and how to fix each.","twitter:image":"https:\/\/checksitestatus.com\/wp-content\/uploads\/2023\/03\/checksitestatus-Logo.png"},"aioseo_meta_data":{"post_id":"7356","title":"HTTP Status Codes vs Browser Error Codes Explained","description":"Confused by an error code? Learn the difference between HTTP status codes and browser errors like DNS_PROBE and ERR_CONNECTION_REFUSED, and how to fix each.","keywords":null,"keyphrases":{"focus":{"keyphrase":"HTTP & browser error codes","score":0,"analysis":[]},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":{"subject":"","preview":"","content":""},"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-09-14 06:47:17","updated":"2026-09-14 07:12:09","seo_analyzer_scan_date":null,"focus_keyword":"HTTP & browser error codes","additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/checksitestatus.com\/fr\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/checksitestatus.com\/fr\/category\/website\/\" title=\"Website\">Website<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHTTP &amp; browser error codes\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/checksitestatus.com\/fr"},{"label":"Website","link":"https:\/\/checksitestatus.com\/fr\/category\/website\/"},{"label":"HTTP &#038; browser error codes","link":"https:\/\/checksitestatus.com\/fr\/http-browser-error-codes\/"}],"_links":{"self":[{"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/posts\/7356","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/comments?post=7356"}],"version-history":[{"count":4,"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/posts\/7356\/revisions"}],"predecessor-version":[{"id":7361,"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/posts\/7356\/revisions\/7361"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/media\/7357"}],"wp:attachment":[{"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/media?parent=7356"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/categories?post=7356"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/checksitestatus.com\/fr\/wp-json\/wp\/v2\/tags?post=7356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}