Google search page broken on macOS? Here's the fix

macOS Errors Beginner 👁 1 views 📅 May 28, 2026

Google search results show a blank or garbled page on Safari/Chrome? Usually a DNS or cache issue. Here's how I fix it for clients.

You open Safari or Chrome on your Mac, type something into Google, hit enter – and instead of a normal search results page, you get a blank white screen, or maybe just a spinning wheel, or the page looks like someone forgot to load the CSS. The URL bar shows Google, but the page itself is dead. I've seen this pop up after macOS updates, after switching Wi-Fi networks, or for no obvious reason at all. It's annoying, but it's almost never hardware failure.

Root cause (plain English)

Nine times out of ten, this is a DNS or cache conflict. Your Mac is holding onto old DNS records for Google's servers, or your browser's cache has a corrupted copy of the Google search page. Sometimes it's a corrupt Safari or Chrome extension, but that's rarer. The short version: your computer is trying to load Google from a stale address or a broken local copy.

The fix (do these in order)

I've listed these from most common fix to least common. Skip the first step, you may waste time, but do them in order because each step eliminates a variable.

Step 1: Flush DNS

Open Terminal (Finder > Applications > Utilities > Terminal) and run this command:

sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder

You'll need to enter your admin password (it won't show as you type, that's normal). Hit enter. Then immediately restart your browser and try Google again.

I had a client last month whose Google search went blank after upgrading to Ventura 13.4. This one command fixed it instantly. It's my go-to for any weird web loading issues on macOS.

Step 2: Clear browser cache

If DNS flush didn't work, the problem is likely a cached copy of Google's page that went bad.

Safari

  1. Go to Safari menu > Settings (or Preferences on older macOS).
  2. Click the Privacy tab.
  3. Click Manage Website Data.
  4. Type "google" in the search field.
  5. Select all Google entries and click Remove.
  6. Close settings and reload Google.

Chrome

  1. Click the three dots menu (top right) > Settings.
  2. Go to Privacy and security > Clear browsing data.
  3. Set time range to "All time" and check "Cached images and files".
  4. Click Clear data.
  5. Close and reopen Chrome.

Important: Clearing cookies will log you out of Google. That's fine – you just need to sign back in. It's a small price for a working search page.

Step 3: Disable extensions

If the page still won't load, a browser extension could be blocking Google's scripts. I've seen ad blockers, privacy extensions, even password managers cause this.

Safari

  1. Safari menu > Settings > Extensions.
  2. Uncheck all extensions.
  3. Reload Google. If it works, turn extensions back on one by one until you find the culprit.

Chrome

  1. Type chrome://extensions in the address bar.
  2. Toggle off all extensions.
  3. Reload Google. If it works, same deal – re-enable one at a time.

Step 4: Reset DNS to default

Sometimes you've set a custom DNS server (like Google's 8.8.8.8 or Cloudflare's 1.1.1.1) and it's causing conflicts. Go to System Settings > Network > Wi-Fi > Details > DNS. If there's anything listed, remove it and leave it blank (your Mac will use your router's DNS). Click OK, then restart your browser.

If it still fails

Okay, you've done all the above and Google still won't load. Two more things to check:

  • Check your Mac's date and time. Seriously. If your clock is wrong by more than a few minutes, HTTPS certificates fail and Google won't load correctly. Go to System Settings > General > Date & Time, make sure "Set time automatically" is on.
  • Try a different network. Connect your Mac to your phone's hotspot or a friend's Wi-Fi. If Google works there, the problem is your home network (maybe your router's DNS is stuck). Reboot your router and try again.
  • Reset NVRAM (Apple Silicon Macs: just restart, it resets automatically on reboot. Intel Macs: shut down, hold Option+Command+P+R on startup for 20 seconds). This clears low-level network settings.

I've yet to see a Google search page issue on macOS that didn't resolve with one of these steps. If yours doesn't, you might have a more exotic problem – like a corporate firewall or a malware infection – but that's rare. Start with the DNS flush, it fixes 80% of cases.

Was this solution helpful?