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
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 🙂