ERR_NETWORK_OFFLINE β Network Offline
HTTP Status: 0 (no HTTP response) Retryable: Yes Automatic retry: None. This is a client-side error β the request never reached the server.
What the User Sees
You appear to be offline. (ERR_NETWORK_OFFLINE)
What Causes This Error
The browserβs fetch() call threw a TypeError with βFailed to fetchβ or βLoad failedβ, indicating the request could not be sent at all. This is detected entirely on the client side β no request reached the API server.
Common causes include: the userβs internet connection dropped (Wi-Fi disconnected, ethernet unplugged), a VPN connection was disrupted, a corporate proxy or firewall is blocking the request, the userβs DNS resolver cannot resolve the API domain, or the device is in airplane mode.
The error is distinguished from other network errors by the specific TypeError message pattern. A βFailed to fetchβ error with no HTTP status code is the browserβs way of indicating a complete network failure, as opposed to a server returning an error status code.
Resolution Steps
For Users
- Check your internet connection. Try loading another website to confirm you have connectivity.
- If using Wi-Fi, verify you are connected to a network and have internet access.
- If using a VPN, try disconnecting it temporarily. Some VPNs block certain domains or have connectivity issues.
- If on a corporate network, check if a firewall or proxy may be blocking access to the API domain.
- Try refreshing the page after restoring connectivity.
- If on mobile, check that you have cellular data or Wi-Fi enabled.
For Administrators
- No admin action is needed β this is a client-side network issue.
- If many users report this simultaneously, check that the API domainβs DNS records are correctly configured and propagated.
- Verify the API is accessible from different networks to rule out a DNS or routing issue.
- If the error correlates with a CDN or DNS provider issue, check Cloudflare status.
Related Errors
- ERR_NETWORK_TIMEOUT β Request was sent but timed out waiting for a response