summaryrefslogtreecommitdiff
path: root/roundcubemail/INSTALL
diff options
context:
space:
mode:
authorroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2005-12-03 16:54:12 +0000
committerroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2005-12-03 16:54:12 +0000
commit2dc87919396cd68a07a20164d0816761dca909ea (patch)
tree7fc050b1e1c2215e1c8c5d43af1f45c6f33eb498 /roundcubemail/INSTALL
parentaec4bd921d413dd835f21f4ab6765fab7e882d89 (diff)
Re-design of caching (new database table added\!); some bugfixes; Postgres support
git-svn-id: https://svn.roundcube.net/trunk@88 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/INSTALL')
-rw-r--r--roundcubemail/INSTALL20
1 files changed, 20 insertions, 0 deletions
diff --git a/roundcubemail/INSTALL b/roundcubemail/INSTALL
index cca4fa12a..f343c8228 100644
--- a/roundcubemail/INSTALL
+++ b/roundcubemail/INSTALL
@@ -31,6 +31,7 @@ roundcube user. Here is an example of that procedure:
> quit
# mysql roundcubemail < SQL/mysql.initial.sql
+
* SQLite
--------
Sqlite requires specifically php5 (sqlite in php4 currently doesn't
@@ -44,6 +45,25 @@ Make sure your configuration points to the sqlite.db file and that the
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
+which ever is the database superuser):
+
+$ createuser roundcubemail
+$ createdb -O roundcubemail roundcubemail
+$ psql roundcubemail
+
+roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password';
+roundcubemail =# \c - roundcubemail
+roundcubemail => \i SQL/postgres.initial.sql
+
+All this has been tested with PostgreSQL 8.0.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.
+
+
UPGRADING
=========
If you already have a previous version of RoundCube installed,