]> git.donarmstrong.com Git - roundcube.git/blob - INSTALL.orig
Imported Upstream version 0.3
[roundcube.git] / INSTALL.orig
1 INTRODUCTION
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
6 wiki page at http://trac.roundcube.net/wiki
7
8
9 REQUIREMENTS
10 ============
11
12 * The Apache or Lighttpd Webserver
13 * .htaccess support allowing overrides for DirectoryIndex
14 * PHP Version 5.2 or greater including
15    - PCRE (perl compatible regular expression)
16    - DOM (xml document object model)
17    - libiconv (recommended)
18    - mbstring (optional)
19 * php.ini options:
20    - error_reporting E_ALL & ~E_NOTICE (or lower)
21    - memory_limit (increase as suitable to support large attachments)
22    - file_uploads enabled (for attachment upload features)
23    - session.auto_start disabled
24    - zend.ze1_compatibility_mode disabled
25 * PHP compiled with OpenSSL to connect to IMAPS and to use the spell checker
26 * A MySQL or PostgreSQL database engine or the SQLite extension for PHP
27 * One of the above databases with permission to create tables
28 * An SMTP server or PHP configured for mail delivery
29
30
31 INSTALLATION
32 ============
33
34 1. Decompress and put this folder somewhere inside your document root
35 2. Make sure that the following directories (and the files within)
36    are writable by the webserver
37    - /temp
38    - /logs
39 3. Create a new database and a database user for RoundCube (see DATABASE SETUP)
40 4. Point your browser to http://url-to-roundcube/installer/
41 5. Follow the instructions of the install script (or see MANUAL CONFIGURATION)
42 6. After creating and testing the configuration, remove the installer directory
43 7. Done!
44
45
46 CONFIGURATION HINTS
47 ===================
48
49 RoundCube writes internal errors to the 'errors' log file located in the logs
50 directory which can be configured in config/main.inc.php. If you want ordinary
51 PHP errors to be logged there as well, enable the 'php_value error_log' line
52 in the .htaccess file and set the path to the log file accordingly.
53
54
55 DATABASE SETUP
56 ==============
57
58 * MySQL
59 -------
60 Setting up the mysql database can be done by creating an empty database,
61 importing the table layout and granting the proper permissions to the
62 roundcube user. Here is an example of that procedure:
63
64 # mysql
65 > CREATE DATABASE roundcubemail /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
66 > GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost
67     IDENTIFIED BY 'password';
68 > quit
69
70 # mysql roundcubemail < SQL/mysql.initial.sql
71
72 Note 1: 'password' is the master password for the roundcube user. It is strongly
73 recommended you replace this with a more secure password. Please keep in
74 mind: You need to specify this password later in 'config/db.inc.php'.
75
76 Note 2: For MySQL version 4.1 and up, it's recommended to create the database for
77 RoundCube with utf-8 charset.
78
79
80 * SQLite
81 --------
82 You need sqlite 2 (preferably 2.8) to setup the sqlite db 
83 (sqlite 3.x also doesn't work at the moment). Here is
84 an example how you can setup the sqlite.db for roundcube:
85
86 # sqlite -init SQL/sqlite.initial.sql sqlite.db
87 Loading resources from SQL/sqlite.initial.sql
88 SQLite version 2.8.16
89 Enter ".help" for instructions
90 sqlite> .exit
91 # chmod o+rw sqlite.db
92
93 Make sure your configuration points to the sqlite.db file and that the
94 webserver can write to the file and the directory containing the file.
95
96
97 * PostgreSQL
98 ------------
99 To use RoundCube with PostgreSQL support you have to follow these
100 simple steps, which have to be done as the postgres system user (or
101 which ever is the database superuser):
102
103 $ createuser roundcube
104 $ createdb -O roundcube -E UNICODE roundcubemail
105 $ psql roundcubemail
106
107 roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password';
108 roundcubemail =# \c - roundcube
109 roundcubemail => \i SQL/postgres.initial.sql
110
111 All this has been tested with PostgreSQL 8.x and 7.4.x. Older
112 versions don't have a -O option for the createdb, so if you are
113 using that version you'll have to change ownership of the DB later.
114
115
116 MANUAL CONFIGURATION
117 ====================
118
119 First of all, rename the files config/*.inc.php.dist to config/*.inc.php.
120 You can then change these files according to your environment and your needs.
121 Details about the config parameters can be found in the config files.
122 See http://trac.roundcube.net/wiki/Howto_Install for even more guidance.
123
124 You can also modify the default .htaccess file. This is necessary to
125 increase the allowed size of file attachments, for example:
126         php_value       upload_max_filesize     2M
127
128
129 UPGRADING
130 =========
131
132 If you already have a previous version of RoundCube installed,
133 please refer to the instructions in UPGRADING guide.
134
135
136 OPTIMISING
137 ==========
138
139 There are two forms of optimisation here, compression and caching, both aimed
140 at increasing an end user's experience using RoundCube Webmail. Compression
141 allows the static web pages to be delivered with less bandwidth. The index.php
142 of RoundCube Webmail already enables compression on its output. The settings
143 below allow compression to occur for all static files. Caching sets HTTP 
144 response headers that enable a user's web client to understand what is static
145 and how to cache it.
146
147 The caching directives used are:
148  * Etags - sets at tag so the client can request is the page has changed
149  * Cache-control - defines the age of the page and that the page is 'public'
150    This enables clients to cache javascript files that don't have private 
151    information between sessions even if using HTTPS. It also allows proxies
152    to share the same cached page between users.
153  * Expires - provides another hint to increase the lifetime of static pages.
154
155 For more information refer to RFC 2616.
156
157 Side effects:
158 -------------
159 These directives are designed for production use. If you are using this in
160 a development environment you may get horribly confused if your webclient
161 is caching stuff that you changed on the server. Disabling the expires 
162 parts below should save you some grief.
163
164 If you are changing the skins, it is recommended that you copy content to 
165 a different directory apart from 'default'.
166
167 Apache:
168 -------
169 To enable these features in apache the following modules need to be enabled:
170  * mod_deflate
171  * mod_expires
172  * mod_headers
173
174 The optimisation is already included in the .htaccess file in the top 
175 directory of your installation.
176
177 If you are using Apache version 2.2.9 and later, in the .htaccess file
178 change the 'append' word to 'merge' for a more correct response. Keeping
179 as 'append' shouldn't cause any problems though changing to merge will 
180 eliminate the possibility of duplicate 'public' headers in Cache-control.
181
182 Lighttpd:
183 ---------
184 With Lightty the addition of Expire: tags by mod_expire is incompatible with
185 the addition of "Cache-control: public". Using Cache-control 'public' is 
186 used below as it is assumed to give a better caching result.
187
188 Enable modules in server.modules:
189     "mod_setenv"
190     "mod_compress"
191
192 Mod_compress is a server side cache of compressed files to improve its performance.
193
194 $HTTP["host"] == "www.example.com" {
195
196     static-file.etags = "enable"
197     # http://redmine.lighttpd.net/projects/lighttpd/wiki/Etag.use-mtimeDetails
198     etag.use-mtime = "enable"
199
200     # http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSetEnv
201     $HTTP["url"] =~ "^/roundcubemail/(plugins|skins|program)" {
202         setenv.add-response-header  = ( "Cache-Control" => "public, max-age=2592000")
203     }
204
205     # http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModCompress
206     # set compress.cache-dir to somewhere outside the docroot.
207     compress.cache-dir   = var.statedir + "/cache/compress"
208
209     compress.filetype = ("text/plain", "text/html", "text/javascript", "text/css", "text/xml", "image/gif", "image/png")
210 }
211
212