freebsd-ports/www/mahara/files/pkg-message.in
Martin Wilke 892eb00246 Mahara is an open source ePortfolio system with a flexible display framework.
Mahara, meaning 'think' or 'thought' in Te Reo M.ori, is user centred
environment with a permissions framework that enables different views of an
e-portfolio to be easily managed. Mahara also features a weblog, resume builder
and social networking system, connecting users and creating online learner
communities.

WWW: http://www.mahara.org/

PR:		ports/131932
Submitted by:	Wen Heping <wenheping at gmail.com>
2009-03-11 16:41:42 +00:00

41 lines
1.2 KiB
Text

POST-INSTALL CONFIGURATION FOR MAHARA
=====================================
1) Create a user and a database for MAHARA to store all
its tables in (or choose an existing database).
2) Add the following to your Apache configuration, and
restart the server:
### Add the AcceptPathInfo directive only for Apache 2.0.30 or later.
Alias /mahara %%PREFIX%%/%%MAHARADIR%%/
AcceptPathInfo On
<Directory %%PREFIX%%/%%MAHARADIR%%>
AllowOverride None
Order Allow,Deny
Allow from all
</Directory>
<Directory %%PREFIX%%/%%MAHARADATADIR%%>
AllowOverride None
Order Allow,Deny
Deny from all
</Directory>
3) Make sure that magic_quotes_gpc is off and register_globals is off
in your PHP.ini file.
4) Change into the directory %%PREFIX%%/%%MAHARADIR%% and copy the
file config-dist.php to config.php, then go through the file and make
changes where appropriate.
5) Now you can navigate to the Mahara website using your web browser.
Log into the system with user "admin", password "mahara".
Congratulations!
For more information, see the INSTALL DOCUMENTATION:
http://wiki.mahara.org/System_Administrator%27s_Guide/Installing_Mahara
=======================================================================