I have been struggling since I have installed the new Chrome version 44.0.2403.xx.
My initial issue was that some stylesheet on my website were load over https, but my website is only http.
I use wordpress, so I have searched inside the core function to find where the HTTPS was added into the url.
The culprit is the is_ssl()
function. Wordpress base is HTTPS verification over the $_SERVER['HTTPS']
variable, and mine was set to 1.
I found out that the last Google Chrome version is sending a header HTTPs = 1
.
How can I prevent this header to cause problems to my website?