changelog shortlog tags changeset files revisions annotate raw

README

changeset 220: 72d8f5faa2e5
parent:134fce4bede3
author: jbe
date: Thu Oct 06 16:48:30 2011 +0200 (4 months ago)
permissions: -rw-r--r--
description: Fixed orthography
1
2################
3# Installation #
4################
5
6
71. Choose a directory where to install the software, e.g. /opt :
8
9$ cd /opt
10
11
122. Get the repositories of the core, the frondend and the web application
13 framework WebMCP:
14
15$ hg clone http://www.public-software-group.org/mercurial/liquid_feedback_core
16$ hg clone http://www.public-software-group.org/mercurial/liquid_feedback_frontend
17$ hg clone http://www.public-software-group.org/mercurial/webmcp
18
19
203. Install LiquidFeedback Core:
21
22$ cd /opt/liquid_feedback_core
23$ make
24$ createdb liquid_feedback
25$ psql -v ON_ERROR_STOP=1 -f core.sql liquid_feedback
26
27You should initiatize your database using the command
28"psql liquid_feedback" and the examples shown in file "init.sql".
29
30
314. Compile WebMCP
32
33$ cd /opt/webmcp
34$ make
35
36If you experience trouble during compilation, you might want to edit the
37file "Makefile.options" (i.e. to add -fPIC to compiler options) and then
38retry:
39
40$ vi Makefile.options
41$ make clean
42$ make
43
44
455. Install Wiki-to-HTML converters
46
47Download latest LiquidFeedback Edition of RocketWiki from
48http://www.public-software-group.org/pub/projects/rocketwiki/liquid_feedback_edition/
49
50Compile the binaries by calling make, and copy them to a place of your
51choice, e.g. /opt/rocketwiki-lqfb/
52
53
546. Configure the webserver and the LiquidFeedback Frontend application:
55
56Edit the configuration files in /opt/liquid_feedback_frontend/config/
57
58Use /opt/webmcp/doc/lighttpd.example.conf (or apache.sample.conf) to setup
59your webserver appropriatly.
60
61
627. Compile help messages from wiki to html
63
64cd /opt/liquid_feedback_frontend/locale/
65make
66
67or by hand:
68
69for file in *.txt; do /opt/rocketwiki-lqfb/rocketwiki-lqfb < $file > $file.html; done
70
71
72