I\'ve been notified that my Wordpress site is broken and the first thing I can tell is that it\'s broken cause it is automatically adding the https protocol to almost every
If you're using Google Chrome it might be an issue.
Read that article I saw yesterday: https://ma.ttias.be/chrome-44-sending-https-header-by-mistake-breaking-web-applications-everywhere/
This issue happened because the latest Chrome version (44.0.2403.89) sends HTTPS: 1 in request headers, which force the Wordpress site to use https.
Follow up the bug report here, it seems Chrome Dev team is working on it and hope they can fix it in next stable release by next Tuesday.
If you are using WooCommerce (most of the reports are from people who using it), you may want to consider one of these workarounds:
plugins\woocommerce\woocommerce.php
and comment out these linesif ( ! isset( $_SERVER['HTTPS'] ) && ! empty( $_SERVER['HTTP_HTTPS'] ) ) {
$_SERVER['HTTPS'] = $_SERVER['HTTP_HTTPS'];
}