]> git.donarmstrong.com Git - roundcube.git/blob - UPGRADING
Imported Upstream version 0.1
[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-rc2
8 ----------------------------------------
9 * replace index.php
10 * replace all files in folder /bin/
11 * replace all files in folder /program/
12 * replace all files in folder /skins/default/
13
14
15 from version 0.1-rc1
16 ----------------------------------------
17 * replace index.php
18 * replace all files in folder /bin/
19 * replace all files in folder /program/
20 * replace all files in folder /skins/default/
21 * If you have LDAP servers configured you should re-configure
22   the config entries using the template given in /config/main.inc.php.dist
23
24
25 from version 0.1-beta2
26 ----------------------------------------
27 * replace index.php
28 * replace all files in folder /bin/
29 * replace all files in folder /program/
30 * replace all files in folder /skins/default/
31 * run all commands in SQL/[yourdbtype].update.sql or
32   re-initalize the database with [yourdbtype].initial.sql
33 * add these lines to /config/main.inc.php
34    $rcmail_config['draft_autosave'] = 300;
35    $rcmail_config['date_today'] = 'H:i';
36 * If you have LDAP servers configured you should re-configure
37   the config entries using the template given in /config/main.inc.php.dist
38
39
40 form version 0.1-beta
41 ----------------------------------------
42 * replace index.php
43 * replace all files in folder /bin/
44 * replace all files in folder /program/
45 * replace all files in folder /skins/default/
46 * run all commands in SQL/[yourdbtype].update.sql or
47   re-initalize the database with [yourdbtype].initial.sql
48 * add this line to /config/db.inc.php
49    $rcmail_config['db_persistent'] = false;
50 * add these lines to /config/main.inc.php
51    $rcmail_config['drafts_mbox'] = 'Drafts';
52    $rcmail_config['junk_mbox'] = 'Junk';
53    $rcmail_config['product_name'] = 'RoundCube Webmail';
54    $rcmail_config['read_when_deleted'] = false;
55    $rcmail_config['enable_spellcheck'] = false;
56    $rcmail_config['protect_default_folders'] = false;
57 * replace the following line from /config/main.inc.php
58    @include($_SERVER['HTTP_HOST'].'.inc.php');
59   with 
60    $rcmail_config['include_host_config'] = false;