alecpl
2008-06-15 7e77b4f893e377073e3520bc9b59fbf33ee1146b
commit | author | age
4e17e6 1 UPDATE instructions
T 2 ===================
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
22
23
30606b 24 from version 0.1.1
A 25 ----------------------------------------
26 * replace index.php
27 * replace all files in folder /bin/
28 * replace all files in folder /program/
29 * replace all files in folder /skins/default/
c8fb2b 30 * run all commands in SQL/[yourdbtype].update.sql
T 31   below the line "-- Updates from version 0.1.1"
30606b 32 * check the config/main.inc.php.dist for new configuration 
A 33   options and add them to your config 
34
35
36 from version 0.1-stable
37 ----------------------------------------
38 * replace index.php
39 * replace all files in folder /bin/
40 * replace all files in folder /program/
41 * replace all files in folder /skins/default/
42 * run all commands in SQL/[yourdbtype].update.sql
43 * check the config/main.inc.php.dist for new configuration options
44   and add them to your config 
45
46
83ce4b 47 from version 0.1-rc2
T 48 ----------------------------------------
49 * replace index.php
50 * replace all files in folder /bin/
51 * replace all files in folder /program/
52 * replace all files in folder /skins/default/
30606b 53 * run all commands in SQL/[yourdbtype].update.sql
83ce4b 54
T 55
b37599 56 from version 0.1-rc1
f7bfec 57 ----------------------------------------
T 58 * replace index.php
83ce4b 59 * replace all files in folder /bin/
f7bfec 60 * replace all files in folder /program/
T 61 * replace all files in folder /skins/default/
b37599 62 * If you have LDAP servers configured you should re-configure
T 63   the config entries using the template given in /config/main.inc.php.dist
64
65
66 from version 0.1-beta2
67 ----------------------------------------
68 * replace index.php
83ce4b 69 * replace all files in folder /bin/
b37599 70 * replace all files in folder /program/
T 71 * replace all files in folder /skins/default/
72 * run all commands in SQL/[yourdbtype].update.sql or
73   re-initalize the database with [yourdbtype].initial.sql
635831 74 * add these lines to /config/main.inc.php
b37599 75    $rcmail_config['draft_autosave'] = 300;
T 76    $rcmail_config['date_today'] = 'H:i';
77 * If you have LDAP servers configured you should re-configure
78   the config entries using the template given in /config/main.inc.php.dist
f7bfec 79
T 80
81 form version 0.1-beta
82 ----------------------------------------
83 * replace index.php
83ce4b 84 * replace all files in folder /bin/
f7bfec 85 * replace all files in folder /program/
T 86 * replace all files in folder /skins/default/
b37599 87 * run all commands in SQL/[yourdbtype].update.sql or
T 88   re-initalize the database with [yourdbtype].initial.sql
89 * add this line to /config/db.inc.php
90    $rcmail_config['db_persistent'] = false;
f7bfec 91 * add these lines to /config/main.inc.php
b37599 92    $rcmail_config['drafts_mbox'] = 'Drafts';
T 93    $rcmail_config['junk_mbox'] = 'Junk';
94    $rcmail_config['product_name'] = 'RoundCube Webmail';
95    $rcmail_config['read_when_deleted'] = false;
96    $rcmail_config['enable_spellcheck'] = false;
97    $rcmail_config['protect_default_folders'] = false;
f7bfec 98 * replace the following line from /config/main.inc.php
T 99    @include($_SERVER['HTTP_HOST'].'.inc.php');
100   with 
b37599 101    $rcmail_config['include_host_config'] = false;