Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Safari won't load some resources over http/2

Http/2 is enabled on server and yesterday I noticed that on Iphone (IOS 10.2) does not load some resources with error:failed to load resource:connecting to server is not possible. When I connect Iphone to Mac there are no errors in console but simply result of some requests result imidiatelly in that error. Interesting thing could be the fact that resources which are not loaded are subdomain of real domain( CNAME to be correct). Site is on https. Server is Windows server 2016.

EDIT: We resolved this subdomain problem, but still there are requests from same domain that are not responding with any response.

I know IOS > 9.3 supports http/2 when resources are loaded over https but thing that resources which not working are not part of that domain could help to resolve this problem but I don't know how.

I know that probably problem is related to http/2 protocol because my android native appliacation also stopped working with error : java.io.IOException: stream was reset: PROTOCOL_ERROR . I resolved that problem by forcing my application to use http/1. Now works. But how to resolve that iphone safari problem?

I'm using ASP.NET Web Forms as backend (which supports http2 since ASP.NET 4.6 which I'm using).

like image 350
Vlado Pandžić Avatar asked Apr 06 '17 11:04

Vlado Pandžić


People also ask

Does Safari support HTTP 2?

HTTP/2 protocol is Fully Supported on Safari 13, which means that any user who'd be accessing your page through Safari 13 can see it perfectly.

Why are some websites not loading on Safari?

Check Safari settingsThe webpage might not be compatible with one or more browser settings, which you can turn on or off as needed. From the menu bar in Safari, choose Safari > Settings (or Preferences). Then click Websites, Privacy, or Security to access these settings: Websites settings.

How do you fix Safari Cannot open the page because it could not connect to the server?

Therefore, one of the quickest and simplest methods you can use to resolve this error is to clear your browser cache. To do that in Safari, you can start by opening up the browser. Next, click on Preferences > Privacy, then select Remove All Website Data. Clear the browser cache in Safari.

How do I fix Safari not loading web pages on iPhone?

You can clear website data occasionally to improve Safari performance. Go to Settings > Safari. Tap Clear History and Website Data. Tap Clear History and Data to confirm.


2 Answers

The answer has already been correctly provided here above by Vlado Pandžić. I cannot comment as I am new on this site, but I wanted to add something I found.

IOS less than version 11 does support HTTP/2. BUT! It will get stuck if the page is too big and compressed. I'm not sure what the cut-off is, but if you open a small page which has dynamic compression (Gzip or whatever) it will work fine. ASP or PHP etc, doesn't matter. Once the page reaches a compressed data size which requires multiple round-trips to pull the data, then Safari gets it's knickers in a twist.

It will literally go into an endless loop, hammering your server with requests. I was seeing thousands of page hits while Safari was just stuck on a blank white screen.

The problem for me, is that disabling dynamic compression on your entire website will result in penalties from Google for mobile-friendliness. Google wants you to have compression on, but you have to disable it for Safari, which sucks.

My solution to this was the enable dynamic compression on the entire website, but I used web.config file to disable it for specific pages which I know can be quite large in size.

<location path="large-page.aspx">
    <system.webServer>
        <urlCompression doDynamicCompression="false" />
    </system.webServer>
</location>

Good luck!

Matt

like image 59
Matt Deemer Avatar answered Sep 27 '22 18:09

Matt Deemer


It seems that solution has been found. After few days of investigating disabling dynamic content compression helped.

enter image description here

like image 39
Vlado Pandžić Avatar answered Sep 27 '22 16:09

Vlado Pandžić