Err_ssl_protocol_error Microsoft Edge



Download SetupVPN for Chrome or Hula for Windows, Chrome, Edge, Firefox, Opera, Android. 4: Fix ERRSSLPROTOCOLERROR - Clear SSL State Open the Classic Control Panel and click on Internet Properties. Click on the Content tab. Click on Clear SSL state. 5: Fix ERRSSLPROTOCOLERROR - Delete or Replace HOSTS File. This site can't provide a secure connection in google chrome Windows 10.www.youtube.com sent an invalid responseERRSSLPROTOCOLERRORHow to fix SSL protocol. ERRSSLPROTOCOLERROR is one of the more difficult tutorials we had to write, and most tutorials we read were incorrect and or out of date. Follow along at. Fix SSL Connection Error on Windows 10 SUBSCRIBE for more: you are having a problem with ERRSSL.

  • Activation (4)
  • Android (42)
  • AppLocker (8)
  • Backup (47)
  • Bash (21)
  • BitLocker (25)
  • Bluetooth (13)
  • BSOD (4)
  • Cellular (10)
  • Chrome (75)
  • Clipboard (11)
  • Context Menu (115)
  • Cortana (42)
  • Dropbox (2)
  • Email (19)
  • Firefox (40)
  • Hyper-V (18)
  • Installation (7)
  • Internet Explorer (26)
  • Libraries (20)
  • Library (1)
  • Magnifier (4)
  • Microsoft Account (36)
  • Microsoft Edge (313)
  • Microsoft Family (12)
  • Microsoft Store (19)
  • Mixed Reality (22)
  • My People (3)
  • Narrator (42)
  • Network (91)
  • News Bar (7)
  • NTFS Encryption (2)
  • Office (12)
  • Offline Files (11)
  • OneDrive (48)
  • Pagefile (2)
  • Pen (4)
  • Phone (24)
  • photos (20)
  • Power Options (72)
  • PowerShell (17)
  • Printer (23)
  • Recycle Bin (6)
  • Search (35)
  • Sets (9)
  • Skype (4)
  • Speech Recognition (12)
  • Start Menu (63)
  • Sticky Notes (11)
  • Surface (3)
  • Task View (7)
  • Taskbar (65)
  • Timeline (10)
  • Touch (15)
  • TPM (1)
  • Uncategorized (29)
  • Vista (61)
  • Windows 10 (2,779)
  • Windows 10 Mobile (62)
  • Windows 7 (660)
  • Windows 8 (728)
  • Windows Defender (49)
  • Windows Firewall (7)
  • Windows Insider (7)
  • Windows Media Player (1)
  • Windows Phone (49)
  • Windows Sandbox (6)
  • Windows Security (5)
  • Windows Server 2012 (4)
  • Windows Terminal (5)
  • Windows Update (33)
  • Windows XP (6)
  • Xbox (18)
  • Your Phone (36)

Have you ever had issues with web assets, like style sheets or images, not loading?

Are you seeing 'Failed to Load Resource net::ERR_BLOCKED_BY_CLIENT' in the developer console?

You may also see a similar message: 'requests to the server have been blocked by an extension'.

This is bad because it can break your web app or at least not make it look right.

Typically, this is due to either a file missing from the server or a typo in the URL. There are edge cases where the request is not missing (status 404) but something else is blocking the request.

There are many levels a request can be blocked. The cause could be in the network transport layer, a proxy server or router between you and the server. It might also be something in the browser.

Last night I received an e-mail from a reader who wanted to let me know that some images on the blog post were not rendering. He and I both assumed it was a 404 issue.

As I begin troubleshooting the problem I realized the images were not a missing or typo. The images rendered in Microsoft Edge. In Chrome, the images were nowhere to be found.

FRUSTRATING!!!!

Upon further investigation, I notice the request to those images were not 404. but an obscure error message in the network waterfall,

'Failed to Load Resource net::ERR_BLOCKED_BY_CLIENT'

Ssl

All sorts of crazy scenarios went through my head. I wondered if there was a header issue, a server configuration error or possibly malformed image that Chrome that did not like.

Err_ssl_protocol_error Microsoft Edge

So, I did what any good developer or system admin does...

>I Bingled (looked it up in the search engines LOL) the problem. Low and behold I found several StackOverflow questions about the 'net::ERR_BLOCKED_BY_CLIENT' issue.

Solving the Problem

It turns out when the network waterfall list this error, it means a browser extension blocked the request. The most common culprit is an ad blocker like AdBlock Plus.

In short your requests to server have been blocked by an extension. Specifically AdBlock Plus was blocking my image.

But how can I fix it?

Microsoft Edge For Windows 7

Err_ssl_protocol_error microsoft edge browser

I optimize all my images by creating a responive image array. I place meta-data in their names to differentiate each size.

The array is generated by a responsive image optimization service I am building. As the images are generated the image width and height is appended to the file name. We do this so it is easier for humans to know how large the image is and help software parse images by their name.

Fortunately, the blocked images all have the same dimensions, 300 x 600 pixels. The service appended '-300x600.' to their file names.

While this normally would not pose an issue, that particular text pattern matches a pattern in the AdBlock Plus the expression list.

Beating AdBlock Plus

If you're not familiar with the way the AdBlock extensions, 'browser saftey' extensions or spam filters work, they use regular expressions to look for text patterns. When they find a match, they block the request or the e-mail.

I was unsure how to determine what was causing the problem. Fortunately, AdBlock Plus provides a window into how the extension processes requests.

In the Chrome developer tools, when AdBlock plus is installed, you'll notice an extra panel called AdBlock. This will list all the network requests just like the network waterfall panel, except the list visually shows you how the AdBlock extension processed that particular request. Because these images were blocked the list shows what causes the assets to be blocked.

As you can see in the images were blocked because of the '-300x600.' pattern in the name. According to the Filter column the match is part of the EasyList criteria AdBlock Plus uses. My solution is to adjust the naming algorithm so the image dimension pattern does not match the AdBlock Plus pattern.

Err_ssl_protocol_error Microsoft Edge 2020

Consumers can disable extensions like AdBlock Plus, but it is doubtful they will. They are using it for a reason.

Instead it is up to us, developers, devops and site owners to catch these sorts of issues. Rename our files to avoid unnecessary censorship.

That is how the bad guys get around these extensions. You are not doing anything bad, right???

So make this part of your routine audit. Make sure your page loads correctly in browsers with popular extensions enabled.

The next time you see this obscure error message in your network tree and can't figure out why, it might be due to a browser extension. Hopefully you've your issues is in an extension like AdBlock Plus that will let you know why the request was blocked.

Err_ssl_protocol_error Microsoft Edge Fix Mac

Now that I know the '-300x600.' character string is causing the Failed to Load Resource ERR_BLOCKED_BY_CLIENT problem I will go back and adjust my naming logic to adjust the pattern with something slightly different so that does not match the extension's algorithm.

We use cookies to give you the best experience possible. By continuing, we'll assume you're cool with our cookie policy.

Install Love2Dev for quick, easy access from your homescreen or start menu.





Comments are closed.