29

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.

7
  • 1
    The answers you're referring to also specifically mention disabling any ad-blocking software. Have you tried that?
    – Mr. Llama
    Commented Oct 21, 2014 at 18:57
  • 1
    @Mr.Llama thanks for attention. Yes, I tried but the result the same.
    – Mirjalal
    Commented Oct 21, 2014 at 19:00
  • 4
    I think this is a bug in the latest version of Chrome. For me it popped up about one week ago. There is an issue report here. The issue is not related to php btw.
    – nothing9
    Commented Oct 22, 2014 at 10:25
  • 1
    so.. when this problem will resolve?
    – Mirjalal
    Commented Oct 22, 2014 at 16:24
  • 2
    They added that info to the issue report: This fix will appear in 40.x.y.z versions.
    – nothing9
    Commented Oct 23, 2014 at 11:34

8 Answers 8

14

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

1
  • 4
    At version 49 (as of March 2016), it's still an issue. This did the trick for me: session_cache_limiter('none'); Commented Mar 11, 2016 at 18:53
5

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"/>
2
  • 1
    I think your last line is meant to be <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
    – sean.boyer
    Commented Dec 19, 2016 at 18:39
  • How is android related to chrome's issue? Commented Mar 12, 2019 at 15:56
2

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.

1
  • Considering I have this error on Google Hangouts, I guess you're right.
    – d4rky
    Commented Oct 28, 2014 at 7:59
1

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

0

If you are using bootstrap that will be the problem. If you want to use same bootstrap file in two locations use it below the header section .(example - inside body)

Note : "specially when you use html editors. "

Thank you.

2
  • it's not answer of the question. also I wrote in the question that, I have already 'checked' all solutions. Thx
    – Mirjalal
    Commented Nov 20, 2014 at 19:06
  • I got same problem then i do some changes in bootstrap file and sorted out my problem. Commented Nov 21, 2014 at 8:58
0

I was getting this error because of the new Google Universal Analytics code, particularly caused by using the Remarketing lists on Analytics.

Here's how I fixed it.
1) Log into Google Analytics
2) Click "Admin" in top menu
3) In "Property" column, click "Property Settings"
4) Make sure "Enable Display Advertiser Features" is "On"
5) Click "Save" at bottom
6) Click ".js Tracking Info" in left menu
7) Click "Tracking Code"
8) Update your website's tracking code


When you run the debugger again, hopefully it will be taken care of.

0

We get err_cache_miss error while using the bowser. Its mean there may be a problem with your browser. It due the items in the cache may be unusable or some configurations are not configured correctly. You may get the solution to clear browser data or Check browser extensions and remove extensions which you felt cause the problem or Resetting your browser or Update your browser or Disabling cache system. These are some tricks to come out this error.

0
-3

Try loading the website in another web browser such as Safari. Recently had this problem and for some reason, it worked after loading in a different browser.

Not the answer you're looking for? Browse other questions tagged or ask your own question.