diff options
Diffstat (limited to 'UPGRADING')
-rw-r--r-- | UPGRADING | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -5,7 +5,6 @@ Follow these instructions if upgrading from a previous version of RoundCube Webmail. - from versions 0.1-alpha and 0.1-20050811 ---------------------------------------- - replace index.php @@ -22,6 +21,7 @@ from versions 0.1-alpha and 0.1-20050811 $rcmail_config['session_lifetime'] = 20; $rcmail_config['message_sort_col'] = 'date'; $rcmail_config['message_sort_order'] = 'DESC'; + $rcmail_config['log_dir'] = 'logs/'; - replace database properties (db_type, db_host, db_user, db_pass, $d_name) in /config/db.inc.php with the following line: $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; @@ -39,7 +39,8 @@ from version 0.1-20050820 $rcmail_config['default_port'] = 143; $rcmail_config['session_lifetime'] = 20; $rcmail_config['message_sort_col'] = 'date'; - $rcmail_config['message_sort_order'] = 'DESC'; + $rcmail_config['message_sort_order'] = 'DESC'; + $rcmail_config['log_dir'] = 'logs/'; - replace database properties (db_type, db_host, db_user, db_pass, $d_name) in /config/db.inc.php with the following line: $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; @@ -55,7 +56,8 @@ from version 0.1-20051007 $rcmail_config['session_lifetime'] = 20; // to specify the session lifetime in minutes $rcmail_config['message_sort_col'] = 'date'; $rcmail_config['message_sort_order'] = 'DESC'; - + $rcmail_config['log_dir'] = 'logs/'; + from version 0.1-20051021 ---------------------------------------- @@ -65,3 +67,4 @@ from version 0.1-20051021 - add these lines to /config/main.inc.php $rcmail_config['message_sort_col'] = 'date'; $rcmail_config['message_sort_order'] = 'DESC'; + $rcmail_config['log_dir'] = 'logs/'; |