Chrome - ERR_CACHE_MISS

Does anyone know what the next Chrome error is?

Failed to load resource: net::ERR_CACHE_MISS 

I looked online, but have not yet found a good answer. Has anyone said this could be due to the latest Chrome update?

What is it and how can I solve the problem?

Greetings

+51
browser google-chrome caching console
Oct 22 '14 at 19:55
source share
4 answers

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

The fix will appear in versions 40.xyz

Until? I do not think you can solve the problem yourself. But you can ignore it. The error shown is only related to dev tools and does not affect the behavior of your site. If you have other problems, they are not related to this error.

+46
Oct 23 '14 at 11:42 on
source share

If you use WebView on Android, the problem is that you have not added permission to use

 <uses-permission android:name="android.permission.INTERNET" /> 
+100
Feb 09 '16 at 14:23
source share

This is a problem other than Chrome, but there are two ways you can fix it.

I noticed an error as soon as I added this specific header to my PHP script.

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

The error is related to PHP sessions when sending response headers. Thus, according to the Chrome bug report in 424599 , this has been fixed and you can just upgrade it to a newer version of Chrome. But if for some reason you cannot or do not want to be updated, a workaround may be to remove these response headers from your PHP script if possible (which I did because it was not required).

+4
Nov 06 '14 at 1:11
source share

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

0
May 17 '19 at 12:13
source share



All Articles