diff options
author | thomascube <thomas@roundcube.net> | 2007-11-25 16:04:38 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-11-25 16:04:38 +0000 |
commit | a898459be2e0ed1be20de4c7aeaba8df357f5d6b (patch) | |
tree | 46bf91d0c8cc6d69e589dbab517ba39a79981bb2 /INSTALL | |
parent | 6223e957cc1e2e2d27ec09c9432e4a97ba99ea39 (diff) |
Fix wrong Postgres setup instructions in INSTALL
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 25 |
1 files changed, 17 insertions, 8 deletions
@@ -1,3 +1,11 @@ +INTRODUCTION +============ + +This file describes the basic steps to install RoundCube Webmail on your +web server. For additional information, please also consult the project's +wiki page at + + http://trac.roundcube.net/wiki REQUIREMENTS ============ @@ -84,19 +92,19 @@ webserver can write to the file. * PostgreSQL ------------ -To use RoundCube with PostgreSQL support you have to follow the next -simple steps, which have to be done with the postgres system user (or +To use RoundCube with PostgreSQL support you have to follow these +simple steps, which have to be done as the postgres system user (or which ever is the database superuser): -$ createuser roundcubemail -$ createdb -O roundcubemail roundcubemail +$ createuser roundcube +$ createdb -O roundcube roundcubemail $ psql roundcubemail roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password'; -roundcubemail =# \c - roundcubemail +roundcubemail =# \c - roundcube roundcubemail => \i SQL/postgres.initial.sql -All this has been tested with PostgreSQL 8.0.x and 7.4.x. Older +All this has been tested with PostgreSQL 8.x and 7.4.x. Older versions don't have a -O option for the createdb, so if you are using that version you'll have to change ownership of the DB later. @@ -104,8 +112,9 @@ using that version you'll have to change ownership of the DB later. CONFIGURATION ============= -Change the files in config/* according your to environment and your needs. -Details about the config paramaters can be found in the config files. +First of all, rename the files config/*.inc.php.dist to config/*.inc.php. +You can then change these files according to your environment and your needs. +Details about the config parameters can be found in the config files. You can also modify the default .htaccess file. This is necessary to increase the allowed size of file attachments, for example: |