till
2008-10-20 a2451ccbc994a1de54be7afd118832991d1f83aa
commit | author | age
a2451c 1 UPGRADING instructions
T 2 ======================
4e17e6 3
c8fb2b 4 First you should remove all subfolders from /program/localization/
T 5 because most language codes have changed in 0.2-alpha. This way you
6 can make sure that no old localization files remain on your disk.
7
8 Then follow these instructions if upgrading from a previous version
4e17e6 9 of RoundCube Webmail.
T 10
7e77b4 11 from version 0.2-alpha
A 12 ----------------------------------------
13 * replace index.php
14 * replace all files in folder /bin/
15 * replace all files in folder /program/
16 * replace all files in folder /skins/default/
17 * run all commands in SQL/[yourdbtype].update.sql
18   below the line "-- Updates from version 0.2-alpha"
19 * check the config/main.inc.php.dist for new configuration 
20   options and add them to your config 
21   WARNING: 'skin_path' option was replaced by 'skin' option
9e8e5f 22 * WARNING: 'db_backend' option has been removed, now only
A 23   PEAR::MDB2 driver is supported
7e77b4 24
A 25
30606b 26 from version 0.1.1
A 27 ----------------------------------------
28 * replace index.php
29 * replace all files in folder /bin/
30 * replace all files in folder /program/
31 * replace all files in folder /skins/default/
c8fb2b 32 * run all commands in SQL/[yourdbtype].update.sql
T 33   below the line "-- Updates from version 0.1.1"
30606b 34 * check the config/main.inc.php.dist for new configuration 
A 35   options and add them to your config 
36
37
38 from version 0.1-stable
39 ----------------------------------------
40 * replace index.php
41 * replace all files in folder /bin/
42 * replace all files in folder /program/
43 * replace all files in folder /skins/default/
44 * run all commands in SQL/[yourdbtype].update.sql
45 * check the config/main.inc.php.dist for new configuration options
46   and add them to your config 
47
48
83ce4b 49 from version 0.1-rc2
T 50 ----------------------------------------
51 * replace index.php
52 * replace all files in folder /bin/
53 * replace all files in folder /program/
54 * replace all files in folder /skins/default/
30606b 55 * run all commands in SQL/[yourdbtype].update.sql
83ce4b 56
T 57
b37599 58 from version 0.1-rc1
f7bfec 59 ----------------------------------------
T 60 * replace index.php
83ce4b 61 * replace all files in folder /bin/
f7bfec 62 * replace all files in folder /program/
T 63 * replace all files in folder /skins/default/
b37599 64 * If you have LDAP servers configured you should re-configure
T 65   the config entries using the template given in /config/main.inc.php.dist
66
67
68 from version 0.1-beta2
69 ----------------------------------------
70 * replace index.php
83ce4b 71 * replace all files in folder /bin/
b37599 72 * replace all files in folder /program/
T 73 * replace all files in folder /skins/default/
74 * run all commands in SQL/[yourdbtype].update.sql or
75   re-initalize the database with [yourdbtype].initial.sql
635831 76 * add these lines to /config/main.inc.php
b37599 77    $rcmail_config['draft_autosave'] = 300;
T 78    $rcmail_config['date_today'] = 'H:i';
79 * If you have LDAP servers configured you should re-configure
80   the config entries using the template given in /config/main.inc.php.dist
f7bfec 81
T 82
83 form version 0.1-beta
84 ----------------------------------------
85 * replace index.php
83ce4b 86 * replace all files in folder /bin/
f7bfec 87 * replace all files in folder /program/
T 88 * replace all files in folder /skins/default/
b37599 89 * run all commands in SQL/[yourdbtype].update.sql or
T 90   re-initalize the database with [yourdbtype].initial.sql
91 * add this line to /config/db.inc.php
92    $rcmail_config['db_persistent'] = false;
f7bfec 93 * add these lines to /config/main.inc.php
b37599 94    $rcmail_config['drafts_mbox'] = 'Drafts';
T 95    $rcmail_config['junk_mbox'] = 'Junk';
96    $rcmail_config['product_name'] = 'RoundCube Webmail';
97    $rcmail_config['read_when_deleted'] = false;
98    $rcmail_config['enable_spellcheck'] = false;
99    $rcmail_config['protect_default_folders'] = false;
f7bfec 100 * replace the following line from /config/main.inc.php
T 101    @include($_SERVER['HTTP_HOST'].'.inc.php');
102   with 
b37599 103    $rcmail_config['include_host_config'] = false;