Hi,
after an upgrade from Roundcube 0.7.3 to 0.8.1 some users are unable to login and receive this error:
(with debug=4) PHP Error in /var/www/rcubewebmail/program/include/rcube_template.php (431): Error loading template for mail SERVICE CURRENTLY NOT AVAILABLE! Error loading template for mail
(with debug=1) SERVICE CURRENTLY NOT AVAILABLE! Error No. [501]
In MySQL user's preference they have something like this (note the skin setting, almost all users with the problem have the same skin setting):
a:3:{s:16:"message_sort_col";s:4:"date";s:18:"message_sort_order";s:4:"DESC";s:4:"skin";N;}
The only way to resolve the issue is a query like this:
UPDATE roundcubemail
.users
SET preferences
= NULL WHERE
users
.user_id
=105;
But I cannot empty the preferences for all of my users.
How can solve this issue? I would like to set for all users the "larry" skin, now some users are using the "litecube" skin.
Thanks