Changeset a898459 in github


Ignore:
Timestamp:
Nov 25, 2007 11:04:38 AM (5 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
b2ff3d4
Parents:
6223e95
Message:

Fix wrong Postgres setup instructions in INSTALL

File:
1 edited

Legend:

Unmodified
Added
Removed
  • INSTALL

    r1fb2c8e ra898459  
     1INTRODUCTION 
     2============ 
     3 
     4This file describes the basic steps to install RoundCube Webmail on your 
     5web server. For additional information, please also consult the project's 
     6wiki page at 
     7      
     8     http://trac.roundcube.net/wiki 
    19 
    210REQUIREMENTS 
     
    8593* PostgreSQL 
    8694------------ 
    87 To use RoundCube with PostgreSQL support you have to follow the next 
    88 simple steps, which have to be done with the postgres system user (or 
     95To use RoundCube with PostgreSQL support you have to follow these 
     96simple steps, which have to be done as the postgres system user (or 
    8997which ever is the database superuser): 
    9098 
    91 $ createuser roundcubemail 
    92 $ createdb -O roundcubemail roundcubemail 
     99$ createuser roundcube 
     100$ createdb -O roundcube roundcubemail 
    93101$ psql roundcubemail 
    94102 
    95103roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password'; 
    96 roundcubemail =# \c - roundcubemail 
     104roundcubemail =# \c - roundcube 
    97105roundcubemail => \i SQL/postgres.initial.sql 
    98106 
    99 All this has been tested with PostgreSQL 8.0.x and 7.4.x. Older 
     107All this has been tested with PostgreSQL 8.x and 7.4.x. Older 
    100108versions don't have a -O option for the createdb, so if you are 
    101109using that version you'll have to change ownership of the DB later. 
     
    105113============= 
    106114 
    107 Change the files in config/* according your to environment and your needs. 
    108 Details about the config paramaters can be found in the config files. 
     115First of all, rename the files config/*.inc.php.dist to config/*.inc.php. 
     116You can then change these files according to your environment and your needs. 
     117Details about the config parameters can be found in the config files. 
    109118 
    110119You can also modify the default .htaccess file. This is necessary to 
Note: See TracChangeset for help on using the changeset viewer.