Skip to content

Emergency WordPress Help: What to Do When Your Site Goes Down

When your WordPress site goes down, determine whether the problem is your server, your WordPress installation, or an external dependency like DNS or CDN. Most outages fall into five categories with different resolution paths.

Emergency WordPress Help: What to Do When Your Site Goes Down

What counts as a WordPress emergency?

Not every glitch qualifies. A broken contact form is frustrating. A site returning a 500 error to every visitor, that is an emergency. The distinction matters because emergencies require a different response: faster action, fewer diagnostic steps before intervening, and sometimes accepting a temporary workaround to restore service while you investigate the root cause.

Situations I categorize as genuine emergencies:

ScenarioImpactTypical Cause
Complete site down (500 or connection refused)All visitors affected, revenue stopsServer crash, PHP fatal, database gone
Homepage redirecting to spam siteBrand damage, Google penalty riskActive hack / malware injection
SSL certificate expiredBrowser blocks all visitorsCertificate renewal failed
Domain not resolvingSite unreachable entirelyDNS misconfiguration or expired domain
Admin dashboard locked outCannot manage or fix anythingCorrupted user table, changed credentials

If your problem is on this list, keep reading. If it is something narrower; a white screen on specific pages or 404 errors after an update then those have dedicated guides.

How do you diagnose why your WordPress site went down?

Before you touch anything, spend 60 seconds confirming what is actually broken. I have seen people reinstall WordPress when the problem was their ISP blocking port 443. Quick triage saves hours.

Check 1: Is it just you?

Load your site from a different network; use your phone on cellular data, or a free tool like downforeveryoneorjustme.com. If the site loads elsewhere, the problem is your network, DNS cache, or ISP.

Check 2: Is the server responding at all?

Try loading the server’s IP address directly (skip DNS). If you get a response (even an error page), the server is alive and the problem is either WordPress-level or DNS-level.

curl -I http://YOUR.SERVER.IP

A connection timeout means the server itself is down or unreachable. A fast error response (403, 500, 502) means the server is up but something higher in the stack is broken.

Check 3: What does the error say?

ErrorWhat It MeansNext Step
500 Internal Server ErrorPHP crashed or .htaccess is malformedCheck error logs
502 Bad GatewayWeb server is up, PHP processor is downRestart PHP-FPM
503 Service UnavailableServer overloaded or in maintenance modeCheck resource usage
504 Gateway TimeoutPHP process is hangingKill hung processes
ERR_CONNECTION_REFUSEDNothing is listening on port 80/443Server down or firewall
ERR_NAME_NOT_RESOLVEDDNS failureCheck DNS records

Check 4: What changed recently?

This is the question I always ask first when someone calls about a downed site. In twelve years of WordPress work, the answer is almost always something changed. An update was applied. A plugin was installed. DNS records were edited. Hosting was migrated. The server ran out of disk space from accumulated backups.

If nothing changed on your end, the cause is usually hosting infrastructure (server hardware failure, network issue, or your host ran into capacity problems).

How do you fix a WordPress site that is completely down?

The approach depends on the error code from your triage. Here are the most common paths:

Server not responding (connection refused/timeout)

You cannot fix what you cannot reach. Your options:

  1. Log into your hosting control panel (cPanel, Plesk, or your VPS provider’s dashboard) and check server status
  2. If you have SSH access, try connecting and if SSH works but HTTP does not, the web server (Apache/Nginx) is down
  3. Restart the web server if you have access:
sudo systemctl restart nginx
# or
sudo systemctl restart apache2
  1. If you cannot connect via SSH either, the server is genuinely down. Contact your host immediately. On shared hosting, you are dependent on their response time. On a VPS, you can force-reboot from the provider dashboard.

500 Internal Server Error

This is the most common WordPress emergency. The server is running but PHP is crashing.

Quick fixes in order of likelihood:

  1. Rename .htaccess via FTP: if a plugin wrote bad rewrite rules, this instantly bypasses them
  2. Check disk space: a full disk prevents PHP from writing temporary files, which triggers 500 errors on every request
df -h
  1. Check PHP error log: the actual error is logged somewhere. On most hosts it is in /var/log/ or in your site’s root directory as error_log
  2. Increase PHP memory in wp-config.php if the log shows memory exhaustion
  3. Rename the plugins folder via FTP (wp-content/plugins to wp-content/plugins-disabled) – this deactivates all plugins at once without needing wp-admin access

The PHP error log is your single most valuable diagnostic tool. Every 500 error writes a message there. Find it and read it before trying random fixes.

502 Bad Gateway

This means your web server (Nginx or Apache reverse proxy) is running, but the PHP processor behind it has died.

sudo systemctl restart php8.2-fpm

Replace the PHP version with whatever your server runs. If PHP-FPM keeps dying after restart, check for a recurring fatal error in the PHP-FPM log that is crashing the process pool.

Database connection errors

If you see the WordPress message about being unable to establish a database connection:

  1. Is MySQL/MariaDB running?
sudo systemctl status mariadb
  1. Has the database password changed? Check wp-config.php credentials against your actual database user.
  2. Has the database hit its connection limit? Common on shared hosting during traffic spikes.
  3. Is the database corrupted? WordPress has a built-in repair tool:

Add this to wp-config.php temporarily:

define('WP_ALLOW_REPAIR', true);

Then visit yoursite.com/wp-admin/maint/repair.php — remove the constant after repair completes.

What should you do about DNS or SSL emergencies?

DNS not resolving

If your domain stopped resolving entirely, check:

  1. Domain expiration: log into your registrar and confirm the domain has not expired
  2. Nameserver records: are they pointing to the correct hosting provider?
  3. DNS propagation: if you recently changed nameservers, allow 24-48 hours (though most propagation completes within 2-4 hours)

DNS issues are deceptive because you cannot fix them instantly even once you identify the problem. If your domain expired, most registrars have a grace period for renewal without penalty. Renew immediately — do not wait.

SSL certificate expired

Browsers will block all visitors from reaching your site if SSL is expired. It looks like a complete outage to non-technical users.

If you use Let’s Encrypt (most common on VPS):

sudo certbot renew --force-renewal
sudo systemctl reload nginx

If renewal fails, check that port 80 is accessible (Let’s Encrypt needs it for HTTP-01 validation) and that your DNS still points to the correct server.

On managed hosting, SSL renewal is automatic. If it failed, contact your host — it is usually a configuration issue on their end.

How do you prevent WordPress emergencies in the first place?

After recovering from an emergency, the question becomes: how do you stop this from happening again? Patterns I have observed over hundreds of incidents:

Sites that go down repeatedly share common traits:

  • No monitoring: the owner finds out from customers, not alerts
  • No pre-update snapshots: updates that break things cannot be rolled back quickly
  • Disk space never checked: backups accumulate until the server fills up
  • PHP and WordPress versions left outdated: known vulnerabilities get exploited
  • Single point of failure: one plugin controlling a critical function with no fallback

What actually prevents emergencies:

  • Uptime monitoring that alerts you within 60 seconds of downtime (UptimeRobot, Hetrix, or similar)
  • Full-site snapshots before every update; if the update breaks something, restore in under a minute
  • Automated SSL certificate renewal with monitoring for renewal failures
  • Regular disk space and database size monitoring
  • A documented recovery procedure so you are not figuring it out under pressure

A WordPress maintenance plan handles all of this proactively. But if you prefer managing it yourself, the key is monitoring. You cannot fix what you do not know is broken.

When should you call for professional emergency WordPress help?

Handle it yourself if the cause is clear and the fix is within your technical comfort zone. Resaving permalinks, restarting a service, renewing an SSL certificate – these are straightforward for anyone comfortable with a terminal or FTP client.

Escalate when:

  • You cannot identify the cause after 20 minutes of diagnosis
  • The server is completely unreachable and your host is not responding
  • You suspect a security breach (redirects to spam, unknown admin accounts)
  • The site keeps crashing after you fix the immediate issue
  • You are losing revenue every minute and cannot afford trial-and-error

The cost of extended downtime almost always exceeds the cost of professional help. A site earning even modest revenue loses more to a four-hour outage than a one-time fix costs.

Frequently Asked Questions

Site down and need it fixed now?

We diagnose and resolve WordPress emergencies with priority response.