Failed to load resource: net::ERR_EMPTY_RESPONSE - google-chrome

I came across the following error in chrome for this url.
Failed to load resource: net::ERR_EMPTY_RESPONSE http://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Nuvola_apps_kaboodle.svg/16px-Nuvola_apps_kaboodle.svg.png
I'm able to open the url provided in the error message without any errors.
So, What is the reason for the error?

I have this issue in my website with the file indexMob.js since I installed Avast Antivirus.
When I disabled the web shield feature its solved the issue.

Related

Google Chrome always crashes after opening a page

Opening google-chrome and starting any page will lead to "freezing". When start with terminal, it shows some errors:
ERROR: gpu_process_host.cc(956)] GPU process exited unexpectedly: exit_code=139
ERROR: gpu_init.cc(453)] Passthrough is not supported, GL is swiftshader, ANGLE is
ERROR: command_buffer_proxy_impl.cc(125)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
ERROR: chrome_browser_main_extra_parts_metrics.cc(228)] crbug.com/1216328: Checking Bluetooth availability started. Please report if there is no report that this ends.
ERROR: chrome_browser_main_extra_parts_metrics.cc(231)] crbug.com/1216328: Checking Bluetooth availability ended.
ERROR: chrome_browser_main_extra_parts_metrics.cc(234)] crbug.com/1216328: Checking default browser status started. Please report if there is no report that this ends.
ERROR: chrome_browser_main_extra_parts_metrics.cc(238)] crbug.com/1216328: Checking default browser status ended.
ERROR: platform_thread_posix.cc(147)] pthread_create: Resource temporarily unavailable (11)
I delete the repeated lines. Actually, this situation arise when I upgraded Ubuntu 18.04 to 20.04, and updated chrome to newest. I have no idea what's the problem about. I searched these output but seems nobody has similar problem.
By the way, vscode sometimes freeze like chrome after that upgrade. I don't know if there are any relationships...
What are you trying to do? Where these errors are getting displayed ? If you are using Selenium and you are getting these errors in the console then add these options into your Selenium code-
options = webdriver.ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-logging'])
driver = webdriver.Chrome(options=options)

How to fix this error when using Live Server extension in Visual Studio Code?

DevTools failed to load SourceMap: Could not load content for chrome-extension://fheoggkfdfchfphceeifdbepaooicaho/sourceMap/chrome/iframe_handler.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
DevTools failed to load SourceMap: Could not load content for chrome-extension://fheoggkfdfchfphceeifdbepaooicaho/sourceMap/chrome/content.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
Is there any way to fix this?
I had almost exactly the same problem:
DevTools failed to load SourceMap: Could not load content for chrome-extension://hdokiejnpimakedhajhdlcegeplioahd/sourcemaps/onloadwff.js.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME"
It indicated in the error it has something to do with Chrome extensions, so I went into my extensions and searched (Ctrl-F) for a small snippet of the error text, hdokiejnpimake. It found that LastPass: Free Password Manager 4.47.0 was the problem. I disabled it and the error went away.

Failed to parse SourceMap: .../assets/5817df3/css/bootstrap.min.css.map

i using BootstrapAsset in my project, code run on local is ok. So i check on server has error about SourceMap.
About error:
Failed to parse SourceMap: My Web url/assets/5817df3/css/bootstrap.min.css.map
I try open this url and see error:
I don't know exact problem. So how can i fix it, or show me how to debug.
Solution is use CDN and config by Customizing Asset Bundles
Please check if you have the same version of bootstrap css and Bootstrap JS.... this happened to me because i had different versions.

Fonts glyphcons missing using yeoman generator

I'm using for the first time Yeoman, and I installed a generator called gulp-angular, where I have components like bootstrap-sass, but I'm having an issue, when I run gulp-serve it gives me an error:
http://localhost:3000/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:3000/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:3000/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf Failed to load resource: the server responded with a status of 404 (Not Found)
I can't figure out why this is happening. I checked inside bower and I see the files there. I tried using gulp fonts, but the fonts are still missing.
I had exactly the same issue and found that the $icon-font-path was pointing to the wrong directory in the index.scss file
this line:
$icon-font-path: "../../bootstrap-sass/assets/fonts/bootstrap/";
should be:
$icon-font-path: "../../bower_components/bootstrap-sass/assets/fonts/bootstrap/";
Hope that helps

chrome extension using google.payments.inapp fails

I'm trying to enable in-app purchase inside my chrome extension. For that I've integrated with Google's buy.js lib.
Now when I attempt to purchase using this endpoint - google.payments.inapp.buy
I get the following error -
An unexpected error has occurred. Please try again later.
When I look at the console of the prompted paymet screen I see that there's a failed attempt to call a service at url -
https://224.32.32.55/29753 Failed to load resource:
net::ERR_ADDRESS_UNREACHABLE
It used to work in the past and stopped. What could be causing this?