Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stupid error: Failed to load resource: net::ERR_CACHE_MISS

I'm developing Web app in Yii framework. I need use AJAX in my some pages. So, when I clicked the button (which I loaded them with AJAX the Google Chrome Developer Tools browser says me:

Failed to load resource: net::ERR_CACHE_MISS

How to solve this problem?

P.S: I know it's duplicate question, but I couldn't find the solution for my problem. In some posts users said use Ctrl+Shift+N and try it. it will works. and/or somebody said: reload pages with Ctrl+F5 because Google Chrome likes cache everything.. So, I read all of these topics and applied all solution tips. But there were not help. Please help me...

And also in other browsers some pages not working properly. But only the Google Chrome Developer Tools returns me the stupid error.

Best.

like image 762
Mirjalal Avatar asked Oct 21 '14 18:10

Mirjalal


People also ask

How do I resolve failed to load a resource?

Chrome's cache clearing process, check all the options, and set the time range to “All time.” After you've cleared your cache, this might reset any options that were producing the error. Check the page in question to see if the resource is now displaying correctly. If not, you can also try resetting Chrome flags.

What does Net :: ERR_CACHE_MISS mean?

ERR_CACHE_MISS error means that the site you are visiting requires particularly submission of data to proceed. You might already do so, but the site requires that again. However, when the error keeps repeating, it can mean there are problems with the web browser used.


4 Answers

Google declares that this is not a failure, but some "misleading error reports". This bug will be fixed in version 40 of chrome.

You can read this:

Chromium forum
Chromium forum
Patch

like image 187
Emanuele Greco Avatar answered Sep 22 '22 07:09

Emanuele Greco


It is actually a permission issue. Add these lines in your platforms/android/AndroidManifest.xml file:

<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> 
like image 34
sgajera Avatar answered Sep 23 '22 07:09

sgajera


It only appeared in my Chrome browser a few days ago too. I checked a few websites I developed in the past that haven't been changed and they also show the same error. So I'd suggest it's not down to your coding, rather a bug in the latest Chrome release.

like image 29
iforwms Avatar answered Sep 22 '22 07:09

iforwms


I solved this error with clearing cache and restarting chrome. Hope they will fix it in ver 40.

like image 41
mokiSRB Avatar answered Sep 23 '22 07:09

mokiSRB