~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to doc/setup/install_proc.txt

  • Committer: dcoles
  • Date: 2008-02-29 02:11:58 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:624
forum: Removed the subsilver2 style and phpBB installer
Modified prosilver theme to be more IVLE integrated
Added db dumps for setup

setup.py: Added config.php generator code

doc/setup/install_proc.txt: New setup/install details

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
##########################################################################
141
141
# Setting up phpBB Forum in IVLE
142
142
##########################################################################
143
 
#
144
 
# Change to the installed IVLE directory
 
143
# Change back to the SVN directory
 
144
cd $IVLESVN
 
145
 
 
146
# Create a postgres database
 
147
# (only need the first line if it was previously created and is now changed)
 
148
sudo -u postgres dropdb ivle_forum
 
149
sudo -u postgres createdb ivle_forum
 
150
sudo -u postgres psql -d ivle_forum < userdb/forum_schema.sql
 
151
sudo -u postgres psql -d ivle_forum < userdb/forum_data.sql
 
152
 
 
153
#Change to the installed IVLE directory
145
154
cd /opt/ivle
146
155
# Fix permissions for install
147
156
cd www/php/phpBB3
148
 
mkdir store
149
 
chmod 777 cache/ files/ store/ images/avatars/upload config.php
150
 
 
151
 
# Add database to Postgres server
152
 
sudo -u postgres createdb forum
153
 
 
154
 
# Log on to IVLE and open the Forum Application (/forum)
155
 
# Click 'INSTALL' tab, 'Proceed to next step'
156
 
# Check that requirements are OK
157
 
# Click 'Start install'
158
 
# Fill in Database configuration
159
 
#   Database type: PostgreSQL 7.x/8.x
160
 
#   # localhost doesn't work, but localhost.csse.unimelb.edu.au does?
161
 
#   Database server hostname: 127.0.0.1
162
 
#   Database name: forum
163
 
#   Database username: postgres
164
 
#   Database password: ##Same as password for ivle db##
165
 
# Complete the rest of the wizard with site settings
166
 
 
167
 
# Remove the Install directory to enable access
168
 
rm -rf install/
169
 
 
170
 
# Disable Registration...
 
157
# At very minimum you apache user must be able to write to
 
158
# cache/ files/ store/ images/avatars/upload config.php
 
159
chown www-data:www-data .
171
160
 
172
161
##########################################################################
173
162
# Installing Pound reverse proxy (optional)