Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 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

    janousekmi

    (@janousekmi)

    I had a same problem. Solved by switching from PHP 7.1 to 7.0. Reason is variable initialized as empty string and then treated as an array. Problem is in file adrotate-manage-publisher.php on line 58(initialization), 139(wrong variable handeling). Maybe there are more bugs but this one I found 🙂

    Hope it helped 🙂

Viewing 2 replies - 1 through 2 (of 2 total)