I'm afraid, since I installed the new version of Chrome 44.0.2403.xx.
My initial problem was that some stylesheets on my website were uploaded via https, but my site was only http.
I use wordpress, so I searched inside the main function to find where HTTPS was added to the URL.
The offender is the is_ssl() function. The Wordpress base is an HTTPS check against the $_SERVER['HTTPS'] variable, and mine is 1.
I found out that the latest version of Google Chrome sends the HTTPs = 1 header.
How can I prevent this header from causing problems on my website?
source share