]> git.donarmstrong.com Git - roundcube.git/blob - UPGRADING
Merge commit 'upstream/0.1_rc2'
[roundcube.git] / UPGRADING
1 UPDATE instructions
2 ===================
3
4 Follow these instructions if upgrading from a previous version
5 of RoundCube Webmail.
6
7 from version 0.1-rc1
8 ----------------------------------------
9 * replace index.php
10 * replace all files in folder /program/
11 * replace all files in folder /skins/default/
12 * If you have LDAP servers configured you should re-configure
13   the config entries using the template given in /config/main.inc.php.dist
14
15
16 from version 0.1-beta2
17 ----------------------------------------
18 * replace index.php
19 * replace all files in folder /program/
20 * replace all files in folder /skins/default/
21 * run all commands in SQL/[yourdbtype].update.sql or
22   re-initalize the database with [yourdbtype].initial.sql
23 * add these lines to /config/main.inc.php
24    $rcmail_config['draft_autosave'] = 300;
25    $rcmail_config['date_today'] = 'H:i';
26 * If you have LDAP servers configured you should re-configure
27   the config entries using the template given in /config/main.inc.php.dist
28
29
30 form version 0.1-beta
31 ----------------------------------------
32 * replace index.php
33 * replace all files in folder /program/
34 * replace all files in folder /skins/default/
35 * run all commands in SQL/[yourdbtype].update.sql or
36   re-initalize the database with [yourdbtype].initial.sql
37 * add this line to /config/db.inc.php
38    $rcmail_config['db_persistent'] = false;
39 * add these lines to /config/main.inc.php
40    $rcmail_config['drafts_mbox'] = 'Drafts';
41    $rcmail_config['junk_mbox'] = 'Junk';
42    $rcmail_config['product_name'] = 'RoundCube Webmail';
43    $rcmail_config['read_when_deleted'] = false;
44    $rcmail_config['enable_spellcheck'] = false;
45    $rcmail_config['protect_default_folders'] = false;
46 * replace the following line from /config/main.inc.php
47    @include($_SERVER['HTTP_HOST'].'.inc.php');
48   with 
49    $rcmail_config['include_host_config'] = false;