thomascube
2008-11-03 6e47c0be5c3b59cedbda8da8d708e69534964de2
commit | author | age
a89845 1 INTRODUCTION
T 2 ============
3
4 This file describes the basic steps to install RoundCube Webmail on your
5 web server. For additional information, please also consult the project's
83ce4b 6 wiki page at http://trac.roundcube.net/wiki
T 7
4e17e6 8
535da2 9 REQUIREMENTS
T 10 ============
11
1fb2c8 12 * The Apache or Lighttpd Webserver
535da2 13 * .htaccess support allowing overrides for DirectoryIndex
47124c 14 * PHP Version 5.2 or greater including
1fb2c8 15    - PCRE (perl compatible regular expression)
5d725e 16    - DOM (xml document object model)
1fb2c8 17    - libiconv (recommended)
T 18    - mbstring (optional)
535da2 19 * php.ini options:
T 20    - error_reporting E_ALL & ~E_NOTICE (or lower)
25d8ba 21    - memory_limit (increase as suitable to support large attachments)
067763 22    - file_uploads enabled (for attachment upload features)
A 23    - session.auto_start disabled
24    - zend.ze1_compatibility_mode disabled
3a01c3 25 * PHP compiled with OpenSSL to connect to IMAPS and to use the spell checker
535da2 26 * A MySQL or PostgreSQL database engine or the SQLite extension for PHP
1fb2c8 27 * One of the above databases with permission to create tables
T 28 * An SMTP server or PHP configured for mail delivery
535da2 29
T 30
4e17e6 31 INSTALLATION
T 32 ============
33
34 1. Decompress and put this folder somewhere inside your document root
10a699 35 2. Make sure that the following directories (and the files within)
T 36    are writable by the webserver
4e17e6 37    - /temp
T 38    - /logs
10a699 39 3. Create a new database and a database user for RoundCube (see DATABASE SETUP)
967b34 40 4. Point your browser to http://url-to-roundcube/installer/
190e97 41 5. Follow the instructions of the install script (or see MANUAL CONFINGURATION)
T 42 6. After creating and testing the configuration, remove the installer directory
42b113 43 7. Done!
T 44
45
10a699 46 DATABASE SETUP
T 47 ==============
48
aade7b 49 * MySQL 4.0.x
T 50 -------------
10a699 51 Setting up the mysql database can be done by creating an empty database,
T 52 importing the table layout and granting the proper permissions to the
53 roundcube user. Here is an example of that procedure:
54
55 # mysql
f7bfec 56 > CREATE DATABASE roundcubemail;
10a699 57 > GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost
6ae6e4 58     IDENTIFIED BY 'password';
10a699 59 > quit
T 60 # mysql roundcubemail < SQL/mysql.initial.sql
535da2 61
aade7b 62
T 63 * MySQL 4.1.x/5.x
64 -----------------
535da2 65 For MySQL version 4.1 and up, it's recommended to create the database for
aade7b 66 RoundCube with utf-8 charset. Here's an example of the init procedure:
T 67
68 # mysql
f7bfec 69 > CREATE DATABASE roundcubemail DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
aade7b 70 > GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost
6ae6e4 71     IDENTIFIED BY 'password';
aade7b 72 > quit
T 73
74 # mysql roundcubemail < SQL/mysql5.initial.sql
10a699 75
3cf664 76 Note: 'password' is the master password for the roundcube user. It is strongly
T 77 recommended you replace this with a more secure password. Please keep in
78 mind: You need to specify this password later in 'config/db.inc.php'.
79
1cded8 80
10a699 81 * SQLite
T 82 --------
83 Sqlite requires specifically php5 (sqlite in php4 currently doesn't
84 work with roundcube), and you need sqlite 2 (preferably 2.8) to setup
85 the sqlite db (sqlite 3.x also doesn't work at the moment). Here is
86 an example how you can setup the sqlite.db for roundcube:
87
88 # sqlite -init SQL/sqlite.initial.sql sqlite.db
89
90 Make sure your configuration points to the sqlite.db file and that the
83ce4b 91 webserver can write to the file and the directory containing the file.
10a699 92
T 93
1cded8 94 * PostgreSQL
T 95 ------------
a89845 96 To use RoundCube with PostgreSQL support you have to follow these
T 97 simple steps, which have to be done as the postgres system user (or
1cded8 98 which ever is the database superuser):
T 99
a89845 100 $ createuser roundcube
T 101 $ createdb -O roundcube roundcubemail
1cded8 102 $ psql roundcubemail
T 103
104 roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password';
a89845 105 roundcubemail =# \c - roundcube
1cded8 106 roundcubemail => \i SQL/postgres.initial.sql
T 107
a89845 108 All this has been tested with PostgreSQL 8.x and 7.4.x. Older
1cded8 109 versions don't have a -O option for the createdb, so if you are
T 110 using that version you'll have to change ownership of the DB later.
111
112
190e97 113 MANUAL CONFIGURATION
T 114 ====================
535da2 115
a89845 116 First of all, rename the files config/*.inc.php.dist to config/*.inc.php.
T 117 You can then change these files according to your environment and your needs.
118 Details about the config parameters can be found in the config files.
190e97 119 See http://trac.roundcube.net/wiki/Howto_Install for even more guidance.
535da2 120
4b9efb 121 You can also modify the default .htaccess file. This is necessary to
S 122 increase the allowed size of file attachments, for example:
123     php_value       upload_max_filesize     2M
535da2 124
83ce4b 125
42b113 126 UPGRADING
T 127 =========
6ae6e4 128
42b113 129 If you already have a previous version of RoundCube installed,
T 130 please refer to the instructions in UPGRADING guide.
4e17e6 131
T 132