• Hello,

    Whenever I disable the plugin website crashes, not able to log in to the dashboard.
    It says too many redirections but if reinstalled everything will be normal.

    Kindly help

    • This topic was modified 3 years, 6 months ago by madhuresh.
Viewing 1 replies (of 1 total)
  • Plugin Author webaware

    (@webaware)

    G’day madhuresh,

    That sounds like you have enabled HTTP_X_FORWARDED_PROTO for HTTPS detection, so deactivating the plugin will stop doing that for you.

    You can add this code to your wp-config.php file somewhere near the top, and it will do the same job without the plugin being activated.

    if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']) === 'https') {
    	$_SERVER['HTTPS'] = 'on';
    }

    cheers,
    Ross

Viewing 1 replies (of 1 total)
  • The topic ‘SSL Insecure Content Fixer not able to disable’ is closed to new replies.