From b2449d29d0c11c562bd83128dff015659ab94c91 Mon Sep 17 00:00:00 2001
From: Andrew McMillan
Date: Thu, 9 Nov 2006 12:18:30 +1300
Subject: [PATCH] Add explanatory note about database creation suggesting
postgres user.
---
docs/website/installation.php | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/docs/website/installation.php b/docs/website/installation.php
index 025b1e0f..9fd821a4 100644
--- a/docs/website/installation.php
+++ b/docs/website/installation.php
@@ -81,7 +81,11 @@ which might be a reasonable place, but it might not be where you
have put them.
This script also expects to be running as a user who has rights
-to create a new database.
+to create a new database, so you may need to do this as the "postgres"
+user, for example:
+
+su postgres -c /usr/share/rscds/dba/create-database.sh
+
Apache VHost Configuration
@@ -139,8 +143,9 @@ and is a regular PHP file which sets (or overrides) some specific variables.
// $c->admin_email = 'admin@example.net';
// $c->system_name = "Really Simple CalDAV Store";
// $c->collections_always_exist = false;
+// $c->default_locale = en;
- $c->pg_connect[] = 'dbname=caldav port=5433 user=general';
+// $c->pg_connect[] = 'dbname=caldav port=5433 user=general';
$c->pg_connect[] = 'dbname=caldav port=5432 user=general';
?>
@@ -161,6 +166,10 @@ creation of calendar collections.
within the system for constructing URLs, and for notifying some
kinds of events.
+If you are in a non-English locale, you can set the default_locale
+configuration to one of the supported locales. At time of writing the
+valid alternative locales are es_AR.UTF-8 and de_DE.UTF-8 but I am
+hoping to have more translations soon.
Completed?