I get the NET::ERR_CERT_INVALID message for every single site. On the screenshot I'm at support.google.com, and it still says the connection is invalid.
I have tried typing the thisisunsafe code, but it only unlocks the current page, and whenever I go to another it gives the same error message.
Also, other browsers, like Safari or Brave works perfectly at the same time. (firefox gives the same message tho)
Happened to me and what fixed it was turing off Avast One Web Shield.
I suggest turning off all VPNs and web antivirus and checking if pages that were previously problematic start working again. If they do then you have pin pointed the problem. Otherwise it is worth checking your chrome version is up to date.
I have a Chrome extension that I have been writing that utilizes the Chrome.storage.sync.get and Chrome.storage.sync.set API calls in order to store and retrieve user settings. It works perfectly fine on my desktop computer (Version 87.0.4280.88 64-bit Windows 10), however when attempting to install on my corporate-managed Chrome (Version 86.0.4240.198 64-bit Windows 10) I received the following error when attempting to save the options that function on my desktop:
"options.html:1 Unchecked runtime.lastError: IO error: .../000001.dbtmp: Could not rename file: File currently in use. (ChromeMethodBFE: 14::RenameFile::2)"
I searched around and see many issues surrounding ChromeMethodBFE: 15::..., but only a few results for this and only one specific from a few weeks ago: Chrome Plugin Storage : Local Testing
Has anyone seen this before either on this build, or in the past, that might have some idea about what to do about it? My extensions in the past have worked on my corporate-managed laptops before for using the chrome.storage calls, however it seems that it may be related to this version. When it hits this exception, it returns an undefined object that doesn't allow me to use anything, so it isn't something I can catch too easily.
Am getting this on chrome console. Is it an error in my code or browser related issue?
[Intervention] Slow network is detected. See <URL> for more details.
Fallback font will be used while loading: <URL>
This isnt a error in your code and is specific to Chrome and how it determines a slow network. Nothing to worry about and you can even remove the warning in pre-Chrome v63:
chrome://flags/#enable-webfonts-intervention-v2
Unfortunately havent figured out how to do it in the latest chrome yet...
As far as I can tell, this error was not being thrown yesterday on Chrome, and as of this morning, it is. I have not changed any of my browser settings. I have attached a screenshot (after opening/closing Developer Tools window four times):
This issue is tangentially similar to Stack Overlow post Failed to load resource under Chrome except that it only occurs when I "Inspect Element" in Chrome. Here are the details I have:
To the best of my ability I undid everything I did since last night (when I did not have this error) and the error persists. When I remove all pre-<html> PHP code, the error disappears.
When I only remove all the pre-<html> PHP code except
<?php session_start(); ?>
the error returns.
Since the error seems to involve PHP, I checked my error log, but there are no notices, warnings, nor errors. When I close the Developer Tools window and then open up the window without a page reload, the number of errors increments by one each time.
When I keep the window open, and then reload the page, the page reloads without throwing the error. However, as soon as I close the Developer tools window again, then open it (no page reload), the error is thrown. I checked my site on Firefox with Firebug enabled, and no errors are thrown, making it seem like a Chrome issue (version 38). My site seems to function normally otherwise. Other sites on device browsed via Chrome (for example, Yahoo) also experience this error.
Also, I have not manually changed any of my browser settings since months ago. As an additional note, this is the second strange error I have encountered in Chrome in the last year (see Stack Overflow question Failed to load resource: net::ERR_NETWORK_IO_SUSPENDED), to which no one was able to find a solution, even with a bounty offered.
Is there a way to prevent this error, or is this a browser-only issue? On a side note, when I open up Developer Tools in Chrome for Stack Overflow, there is no error thrown, so either Stack Overflow is not coded in PHP or they have a way to prevent this error. I think my site is not affected, but I am not 100% sure, and it makes me nervous :)
Per the developers, this error is not an actual failure, but rather "misleading error reports". This bug is fixed in version 40, which is available on the canary and dev channels as of 25 Oct.
Patch
On Chrome's latest update (38.0.2125.104 m at the moment), Google added the option to know whether the files loaded to the website were newly downloaded from the server - or read from the local cache.
When an error like yours "hits" the console - you know the files were just downloaded from the server and not read from the local cache. You can recreate this error by clicking Ctrl + F5 (refresh and erase cache).
It fits your description where Firebug (or equivalents) doesn't fire any errors to the console - whilst Chrome does.
So, the bottom line is - your're just fine and you can ignore this error - it's merely an indicator.
Check to see if you have previously disabled caching in Chrome when the developer console is open - the setting is under the console, settings icon > General tab: Disable cache (while DevTools is open)
Check for the presence of words like "ad", "banner" or "popup" within your file. I removed these and it worked. Based on this post here: Failed to load resource under Chrome it seems like Ad Block Plus was the culprit in my case.
See if you can recreate the issue in an Incognito tab. If you find that the problem no longer occurs then I would recommend you go through your extensions, perhaps disabling them one at a time. This is commonly the cause as touched on by Nikola
I had issues getting through a form because of this error.
I used Ctrl+Click to click the submit button and navigate through the form as usual.
I have developed a plugin via Firebreath. I need to get range requests to work seeing that I am loading a large file from the server. I would like to specify the range.
For some reason, NPNFuncs.requestread(stream, rangeList) is returning a general error. Does anyone know how to debug this further?
For Firefox, the plugin-container.exe is managing my plugin. Can I build plugin-container as debuggable build from Mozilla and debug it that way?
Thanks,
Scott.