Skip to content
Fixes & Errors

Google Chrome Errors: Complete Fix Guide

This complete Google Chrome errors troubleshooting guide explains how to fix the most common Chrome problems including crashes, loading errors, network issues, performance problems, and browser misbehavior.

Google Chrome Errors: Complete Fix Guide

Chrome error codes look intimidating but each one is actually quite specific — they tell you exactly what failed. The problem is that most fix guides treat all Chrome errors as if they’re the same problem with the same fix (“clear your cache and restart”), when in reality each error code points to a different root cause and needs a different solution.

This guide decodes the most common Chrome error codes — what each one actually means, the specific cause behind it, and the direct fix. Use Ctrl+F to find your specific error code rather than reading sequentially. Each section is self-contained.

If you don’t see an error code on your screen — just “This site can’t be reached” or similar generic message — open Chrome DevTools (F12) → Console tab. The error code typically appears there even when Chrome’s main page hides it from the user. That gives you a starting point for the specific fix below.

Chrome Not Loading Pages or Showing Blank Screens

One of the most common Google Chrome errors occurs when pages refuse to load or display only a blank or white screen. This problem is usually caused by corrupted cache files, extensions, or GPU rendering issues.

For a full walkthrough, see How to Fix Chrome Not Loading Pages.

Network and Connection Errors in Chrome

Chrome frequently displays network‑related errors when it cannot connect securely or resolve domain names. These Google Chrome errors usually point to DNS problems, network instability, or misconfigured browser settings.

SSL and Security Certificate Errors

Security‑related Google Chrome errors appear when encrypted connections fail validation. These errors protect users but can be confusing when they block legitimate websites.

Chrome Crashes, Freezing, and Startup Failures

Google Chrome errors that cause crashes or freezing usually stem from corrupted profiles, incompatible extensions, or system conflicts.

Depending on when the crash occurs, see:

Performance Problems: Slow Chrome and High Resource Usage

Many Google Chrome errors are not strict error messages but performance failures. These include Chrome running slow, consuming excessive memory, CPU, or disk resources.

Extensions, Downloads, and Browser Misbehavior

Chrome extensions and download handling are another frequent source of Google Chrome errors. Broken extensions, blocked downloads, and notification abuse can significantly degrade browser stability.

Less Common but Confusing Chrome Errors

Some Google Chrome errors appear only under specific conditions but can block browsing entirely.

How to Use This Guide

If you are experiencing a Google Chrome error, identify the closest matching symptom above and follow the linked guide. Each article provides detailed troubleshooting steps tailored to that specific issue.

Final Thoughts

Most Google Chrome errors are caused by cache corruption, extensions, network misconfiguration, or profile damage—not by faulty hardware. This pillar guide, together with the linked fixes, covers nearly every common Chrome problem users encounter.

By approaching Chrome troubleshooting systematically, you can usually restore full browser functionality without reinstalling Chrome or Windows.

ERR_NAME_NOT_RESOLVED

What it means: Chrome cannot translate the domain name (e.g., example.com) into an IP address. This is a DNS lookup failure — Chrome asked your DNS server “what’s the IP for example.com?” and got no answer or an invalid answer.

Most common cause: Your DNS server is down, slow, or returning bad results. ISP DNS servers occasionally have outages. The fastest fix: switch to a faster public DNS like Cloudflare’s 1.1.1.1 or Google’s 8.8.8.8.

How to fix: Settings → Network & internet → Wi-Fi → Hardware properties → DNS server assignment → Manual → enter 1.1.1.1 and 1.0.0.1. Restart your network connection. The error should clear instantly. If it persists, the website itself may have DNS misconfiguration on their end — try opening it on your phone using cellular data to confirm.

ERR_CONNECTION_REFUSED

What it means: Chrome reached the server, but the server actively refused the connection. This is different from a timeout — there’s a server there, but it’s not accepting connections on the port Chrome tried.

Most common cause: The website is genuinely down, blocked by a firewall (yours or theirs), or your local proxy/VPN is misconfigured. This isn’t typically a Chrome problem — Chrome is correctly reporting that the destination refused the connection.

How to fix: First, test the same URL in incognito mode (Ctrl+Shift+N) and on your phone using cellular data. If it works elsewhere, your local network is blocking it — check VPN, antivirus, or corporate firewall settings. If it fails everywhere, the website itself is down and you need to wait or contact the site owner.

ERR_INTERNET_DISCONNECTED

What it means: Chrome cannot detect any network connection at all. This is usually correct (you’re genuinely offline) but occasionally Chrome misreads the network state when waking from sleep or switching between Wi-Fi networks.

How to fix: Confirm you actually have internet (open another browser or test in another app). If you do, restart Chrome’s network state: chrome://flags/#network-service → restart Chrome. If the issue happens repeatedly after sleep, disable hardware acceleration in Chrome settings.

ERR_CERT_AUTHORITY_INVALID

What it means: The website’s SSL certificate was issued by an authority Chrome doesn’t trust. This protects you from impersonation attacks — a site claiming to be your bank but secured by a random certificate authority would trigger this error.

Most common cause on a personal computer: The website actually has a misconfigured certificate. Don’t bypass this on banking, email, or shopping sites. On a corporate network, this often appears because your employer’s security tool acts as a middleman with its own certificate — IT can resolve it.

How to fix: Check your system date and time first — wrong clock causes false certificate errors. If date/time are correct and the site is legitimate but misconfigured, you can use Advanced → Proceed (but only if you trust the site explicitly). Never bypass this error on financial or sensitive sites.

ERR_TOO_MANY_REDIRECTS

What it means: The site is redirecting you in a loop — page A redirects to B which redirects back to A. Chrome stops the loop after a set number of jumps.

Most common cause: A stale cookie causing the site to redirect you to a login that bounces you back. Less commonly, the site itself has a broken redirect configuration.

How to fix: Clear cookies for that specific site. Chrome Settings → Privacy → Cookies and other site data → See all cookies → search for the domain → Remove. Reload the page. If it still fails, the issue is the website’s configuration and only the site owner can fix it.

RESULT_CODE_HUNG and the “Aw, Snap!” page

What it means: The page consumed too much memory or hit a process limit and Chrome killed it to keep the browser responsive. The page itself caused this — it’s not a network error.

How to fix: Reload the page (often works once the browser has memory back). If it happens repeatedly on the same site, close other tabs to free memory. If the site reliably crashes Chrome, the issue is the website’s code — try a different browser (Firefox, Edge) on the same URL to confirm.

When to clear cache, when not to

Most fix guides start with “clear your cache.” This is bad general advice — clearing cache rarely fixes specific Chrome errors and slows down your browsing for several days afterward as the cache rebuilds.

Clear cache for: Sites loading old versions of pages after updates, sites showing styling problems that you suspect are caused by cached CSS/JS, troubleshooting after fixing site-specific issues.

Don’t clear cache for: Network errors (ERR_TIMED_OUT, ERR_NAME_NOT_RESOLVED, ERR_CONNECTION_*) — these aren’t cache problems. Certificate errors (ERR_CERT_*) — also not cache. “Aw, Snap!” crashes — these are memory not cache.

What’s the most common Chrome error and how do I fix it?

ERR_TIMED_OUT is the most reported. It usually isn’t a website problem — it’s a stuck socket pool or stale DNS cache on your end. Type chrome://net-internals/#sockets and click ‘Flush socket pools’ — fixes it in seconds. ERR_NAME_NOT_RESOLVED is second most common; that one’s a DNS issue, switch to Cloudflare’s 1.1.1.1 DNS to resolve.

Where can I find Chrome’s full list of error codes?

chrome://network-errors/ lists every error code Chrome can show, with brief descriptions. It’s not formatted for casual reading but it’s the authoritative reference. The Chromium source code also has them documented at chromium.googlesource.com but the network-errors page is more accessible.

Does reinstalling Chrome fix all Chrome errors?

Almost no — most Chrome errors aren’t caused by Chrome’s installation. Network errors are caused by network/DNS/firewall issues. Certificate errors are caused by certificates. Crashes are caused by specific pages. Reinstalling resets settings and extensions, which sometimes helps coincidentally, but it’s not the right fix for specific error codes. Identify what the error code actually means first.

Why do I get different errors on different websites?

Different errors mean different things, so getting variety is normal. ERR_NAME_NOT_RESOLVED on one site and ERR_CONNECTION_REFUSED on another doesn’t mean Chrome is broken — it means those two sites are failing in different ways. The first has a DNS problem, the second has a connection refusal. Each needs its own fix.

Will using a VPN cause Chrome errors?

Yes, sometimes. VPNs route your traffic through their servers, which can fail in various ways: VPN’s DNS is slow (ERR_TIMED_OUT), VPN’s exit point is blocked by the site (ERR_CONNECTION_REFUSED), VPN’s certificate intercepts trip the SSL check (ERR_CERT_*). If a site fails with VPN on and works with it off, the VPN is the cause — switch VPN server or temporarily disable for that site.

How do I see Chrome’s diagnostic info for an error?

Open Chrome DevTools (F12) → Console tab when the error occurs. You’ll see more detail than the user-facing error page shows. Also useful: chrome://net-internals/#events captures all network activity in real time. For persistent errors, capturing the net-internals log lets you see exactly what’s failing.

More Guides in This Series

These additional guides in the same cluster cover specific scenarios and complementary topics:

Browser Errors

Aw Snap Error in Chrome · Chrome Address Bar Not Working · Chrome Autofill Not Working · Chrome Autofill Stopped Working · Chrome Bookmark Bar Disappeared · Chrome Bookmarks Bar Not Showing · Chrome Bookmarks Not Showing · Chrome Cache Not Clearing · Chrome Casting Not Working · Chrome Cookies Not Saving · Chrome Cookies Not Working · Chrome Crash on Startup? How to Fix Chrome Crash on Startup on Windows · Chrome Dark Mode Not Working · Chrome Downloads Not Working · Chrome ERR_CACHE_MISS · Chrome ERR_EMPTY_RESPONSE · Chrome Extensions Not Working · Chrome Extensions Slowing Down Your Browser · Chrome Freezing on Windows · Chrome High CPU Usage · Chrome High Memory Usage · Chrome History Not Saving · Chrome Keeps Freezing? The Process Most Guides Don’t Tell You to Kill · Chrome Keeps Opening New Tabs? How to Fix Chrome Keeps Opening New Tabs Automatically · Chrome Keeps Reloading Tabs · Chrome Loading Pages Slowly · Chrome Not Loading Images · Chrome Not Loading Pages · Chrome Not Playing Audio · Chrome Not Printing · Chrome Not Saving Passwords · Chrome Not Updating · Chrome Out of Memory Error · Chrome PDF Not Opening · Chrome Password Manager Not Working · Chrome Sign In Not Working? How to Fix Chrome Sign In Not Working and Sync Issues · Chrome Slow to Start · Chrome Spell Check Not Working · Chrome Sync Not Working · Chrome Tab Crashing · Chrome Tab Keeps Crashing · Chrome Too Many Redirects Error · Chrome Translate Not Working · Chrome Video Not Playing · Chrome Videos Not Loading · Chrome WebGL Not Working · Chrome WebGL Not Working · Chrome Won’t Open in Windows 11 · ERR_CONNECTION_RESET in Chrome · Edge Bookmarks Disappeared · Firefox Bookmarks Missing · Firefox Crashing on Startup · Firefox Keeps Crashing · Firefox Not Loading Pages · Firefox Not Responding · Firefox Secure Connection Failed · Firefox Video Not Playing · Fix Chrome Microphone Not Working · How to Fix Chrome Keeps Crashing · How to Fix DNS_PROBE_FINISHED_NXDOMAIN in Chrome · How to Fix ERR_CONNECTION_REFUSED in Chrome · How to Fix Edge Sync Not Working · How to Fix Firefox Not Playing Videos · How to Fix Firefox Sync Not Working · How to Fix “This Site Can’t Be Reached” in Chrome · Microsoft Edge Keeps Crashing · Microsoft Edge Keeps Freezing · Microsoft Edge Not Loading Pages · Microsoft Edge Slow to Start · Microsoft Edge Won’t Load Pages · Microsoft Edge Won’t Open? Every Fix for Launch Failures · SSL Certificate Error in Chrome · Stop Chrome Tabs From Reloading · Stop Edge Changing Your Homepage · Videos Not Playing in Chrome? The Hardware Acceleration Test · Why Is Chrome So Slow? Proven Fixes to Speed Up Google Chrome

Nikolas Lamprou

Nikolas Lamprou (MSc; GCFR, SC-200, Security+) has been working with computers professionally since 2009 — starting with web development and e-commerce, and moving into cybersecurity over the years. Based in Greece, he brings over 15 years of real-world IT experience to SolveTechToday, where he writes about Windows fixes, software reviews, security tools, and AI applications. His goal is straightforward: cut through the noise and give readers clear, honest guidance on the tech decisions that matter.

Stay Ahead

Fix your next problem before it starts

Get the week's best Windows fixes, software picks, and security guides delivered straight to your inbox. No noise, just solutions.

Press ESC to close · Try "Windows 11" or "Chrome"