Chrome - ERR_CACHE_MISS

Google ChromeCachingBrowserConsole

Google Chrome Problem Overview


Does anybody know what the following Chrome error is?

Failed to load resource: net::ERR_CACHE_MISS

I have had a look online, but have not found a good answer yet. Somebody said it might be related to the latest Chrome update?

What is it and how can I resolve the issue?

Cheers

Google Chrome Solutions


Solution 1 - Google Chrome

If you are using WebView in Android developing the problem is that you didn't add uses permission

<uses-permission android:name="android.permission.INTERNET" />

Solution 2 - Google Chrome

Yes, this is a current issue in Chrome. There is an issue report here.

The fix will appear in 40.x.y.z versions.

Until then? I don't think you can resolve the issue yourself. But you can ignore it. The shown error is only related to the dev tools and does not influence the behavior of your website. If you have any other problems they are not related to this error.

Solution 3 - Google Chrome

This is an issue distinct to Chrome, but there are two paths you can take to fix it.

I noticed the error once I added this specific header to my PHP script.

header('Content-Type: application/json');

The error appears to be related to PHP sessions when sending response headers. So according to chromium bug report 424599, this was fixed and you can just update to a newer version of Chrome. But if for some reason you can't or don't want to update, the workaround would be to remove these response headers from your PHP script if possible (that's what I did because it wasn't required).

Solution 4 - Google Chrome

This is a known issue in Chrome and resolved in latest versions. Please refer https://bugs.chromium.org/p/chromium/issues/detail?id=942440 for more details.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPaddyView Question on Stackoverflow
Solution 1 - Google ChromeGianluca DemarinisView Answer on Stackoverflow
Solution 2 - Google Chromenothing9View Answer on Stackoverflow
Solution 3 - Google ChromeEternalHourView Answer on Stackoverflow
Solution 4 - Google ChromeMaddyView Answer on Stackoverflow