• Worked beautifully for Facebook and Regular Logins over HTTP but as soon as I
    switched over to HTTPS it Logins fine but won’t allow me into the Dashboard
    settings. Project seems dormant and without SSL support; sadly it’s no good to
    me anymore.

Viewing 1 replies (of 1 total)
  • Hi,
    for anyone who has the same problem, this helped me:

    // use secure cookie for login
    function fix_secure_signon_cookie_filter($secure_cookie){
    	if(is_ssl()) return true;
    	return $secure_cookie;
    }
    add_filter( 'secure_signon_cookie', 'fix_secure_signon_cookie_filter' );

    Add it to your functions.php file

Viewing 1 replies (of 1 total)
  • The topic ‘HTTP works – HTTPS unfortunately don’t work’ is closed to new replies.