Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome - ERR_CACHE_MISS

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

like image 929
Paddy Avatar asked Oct 22 '14 19:10

Paddy


People also ask

What does Net :: ERR_CACHE_MISS mean?

The ERR_CACHE_MISS Message in Google Chrome. From the name, it's clear that this error is related to caching. More specifically, there are a variety of reasons you might be seeing this message, including: Your browser is unable to obtain cache files from the site you're trying to access.


2 Answers

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" /> 
like image 69
Gianluca Demarinis Avatar answered Oct 23 '22 04:10

Gianluca Demarinis


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.

like image 38
nothing9 Avatar answered Oct 23 '22 02:10

nothing9