Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is this error appearing in chrome load resource: net::ERR_QUIC_PROTOCOL_ERROR

This is the error I am seeing in my Chrome's console.

load resource: net::ERR_QUIC_PROTOCOL_ERROR

How can I fix it? I want to display a Google map

CheckItHere

like image 592
Patrick Mutwiri Avatar asked Jan 28 '15 15:01

Patrick Mutwiri


People also ask

What causes Err_quic_protocol_error?

Sometimes, the ERR_QUIC_PROTOCOL_ERROR message could be directly caused by the protocol, but it can also be caused by a problem with your Internet connection (or VPN/proxy) or an issue with a browser extension.

How do I enable quic in Chrome?

Experimental QUIC protocol Google Chrome still keeps this as an experimental feature while allowing users to experience it. Users can reach this configuration by entering chrome://flags/#enable-quic on their address bar. QUIC is implemented to make the web network faster and more efficient.


1 Answers

The error appears to occur when the QUIC protocol is blocked (e.g. by an ISP) along the route between you and the target site. As a workaround, to this error, you can disable QUIC in Chrome by disabling the enable-quic setting by navigating to:

chrome://flags/#enable-quic

And changing the Experimental QUIC Protocol drop down to Disabled.

HowToDisableQuicProtocolInChrome

like image 53
StuartLC Avatar answered Oct 03 '22 04:10

StuartLC