71. Choose a directory where to install the software, e.g. /opt :
122. Get the repositories of the core, the frondend and the web application
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
203. Install LiquidFeedback Core:
22$ cd /opt/liquid_feedback_core
24$ createdb liquid_feedback
25$ psql -v ON_ERROR_STOP=1 -f core.sql liquid_feedback
27You should initiatize your database using the command
28"psql liquid_feedback" and the examples shown in file "init.sql".
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
455. Install Wiki-to-HTML converters
47Download latest LiquidFeedback Edition of RocketWiki from
48http://www.public-software-group.org/pub/projects/rocketwiki/liquid_feedback_edition/
50Compile the binaries by calling make, and copy them to a place of your
51choice, e.g. /opt/rocketwiki-lqfb/
546. Configure the webserver and the LiquidFeedback Frontend application:
56Edit the configuration files in /opt/liquid_feedback_frontend/config/
58Use /opt/webmcp/doc/lighttpd.example.conf (or apache.sample.conf) to setup
59your webserver appropriatly.
627. Compile help messages from wiki to html
64cd /opt/liquid_feedback_frontend/locale/
69for file in *.txt; do /opt/rocketwiki-lqfb/rocketwiki-lqfb < $file > $file.html; done