The problem is with the persistent login cookie that cannot be deleted after logout process.
To correct this malfunction, open with a text editor the file persistent_login.php, which is inside the persistent_login folder of Roundcube plugins, move to the last line and replace:
return setcookie($name, "", time() - 60);
with:
return rcmail::get_instance()->setcookie($name, "", time() - 60);
Thanks and good luck!
-- View this message in context: http://roundcube-webmail.10982.n7.nabble.com/Persistent-Login-Plugin-Can-t-l... Sent from the Users mailing list archive at Nabble.com.