Changes between Version 10 and Version 11 of Howto_KnownIssues


Ignore:
Timestamp:
Apr 9, 2012 11:37:25 PM (14 months ago)
Author:
nliadm
Comment:

This drove me mad for about 3 days.

Legend:

Unmodified
Added
Removed
Modified
  • Howto_KnownIssues

    v10 v11  
    2222 
    2323User logins are case-sensitive in Roundcube. However, you can use 'login_lc' option to make them case-insensitive. Exactly it forces all logins to be lowercase before logging in and registering a user. After enabling this option, user records needs to be updated, e.g. with query "UPDATE users SET username = LOWER(username);". 
     24 
     25== Debian and PHP == 
     26 
     27Debian installs the [http://www.hardened-php.net/suhosin/ suhosin] patch by default, and if you use nginx Roundcube doesn't like the session encryption. In order to fix this, append these lines to your php.ini: 
     28{{{ 
     29[suhosin] 
     30suhosin.session.encrypt = Off 
     31}}}