]> git.donarmstrong.com Git - roundcube.git/blob - UPGRADING
Imported Upstream version 0.2~alpha
[roundcube.git] / UPGRADING
1 UPDATE instructions
2 ===================
3
4 First you should remove all subfolders from /program/localization/
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
9 of RoundCube Webmail.
10
11 from version 0.1.1
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.1.1"
19 * check the config/main.inc.php.dist for new configuration 
20   options and add them to your config 
21
22
23 from version 0.1-stable
24 ----------------------------------------
25 * replace index.php
26 * replace all files in folder /bin/
27 * replace all files in folder /program/
28 * replace all files in folder /skins/default/
29 * run all commands in SQL/[yourdbtype].update.sql
30 * check the config/main.inc.php.dist for new configuration options
31   and add them to your config 
32
33
34 from version 0.1-rc2
35 ----------------------------------------
36 * replace index.php
37 * replace all files in folder /bin/
38 * replace all files in folder /program/
39 * replace all files in folder /skins/default/
40 * run all commands in SQL/[yourdbtype].update.sql
41
42
43 from version 0.1-rc1
44 ----------------------------------------
45 * replace index.php
46 * replace all files in folder /bin/
47 * replace all files in folder /program/
48 * replace all files in folder /skins/default/
49 * If you have LDAP servers configured you should re-configure
50   the config entries using the template given in /config/main.inc.php.dist
51
52
53 from version 0.1-beta2
54 ----------------------------------------
55 * replace index.php
56 * replace all files in folder /bin/
57 * replace all files in folder /program/
58 * replace all files in folder /skins/default/
59 * run all commands in SQL/[yourdbtype].update.sql or
60   re-initalize the database with [yourdbtype].initial.sql
61 * add these lines to /config/main.inc.php
62    $rcmail_config['draft_autosave'] = 300;
63    $rcmail_config['date_today'] = 'H:i';
64 * If you have LDAP servers configured you should re-configure
65   the config entries using the template given in /config/main.inc.php.dist
66
67
68 form version 0.1-beta
69 ----------------------------------------
70 * replace index.php
71 * replace all files in folder /bin/
72 * replace all files in folder /program/
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
76 * add this line to /config/db.inc.php
77    $rcmail_config['db_persistent'] = false;
78 * add these lines to /config/main.inc.php
79    $rcmail_config['drafts_mbox'] = 'Drafts';
80    $rcmail_config['junk_mbox'] = 'Junk';
81    $rcmail_config['product_name'] = 'RoundCube Webmail';
82    $rcmail_config['read_when_deleted'] = false;
83    $rcmail_config['enable_spellcheck'] = false;
84    $rcmail_config['protect_default_folders'] = false;
85 * replace the following line from /config/main.inc.php
86    @include($_SERVER['HTTP_HOST'].'.inc.php');
87   with 
88    $rcmail_config['include_host_config'] = false;