Chrome Version 44.0.2403.89 m is trying to force HTTPS

Solution 1:
Enable mod_header on the server and added this rule to my appache2.conf file:

<IfModule mod_headers.c>
  RequestHeader unset HTTPS
</IfModule>

Solution 2:
Or you need to add the code to fonction.php file of your current theme:

function https_chrome44fix() {
  $_SERVER['HTTPS'] = false;
}
add_action('init', 'https_chrome44fix',0); 

Leave a Comment