blob: b92b9ad6a89e4be7c39cb2f70f41464dcd7462d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
POST-INSTALL CONFIGURATION FOR MOODLE
=====================================
1) Create a user and a database for Moodle to store all
its tables in (or choose an existing database).
NOTE: this package assumes that either the php4-pgsql
or php4-mysql packages are installed, as needed.
2) Add the following to your Apache configuration, and
restart the server:
AcceptPathInfo On
<Directory ${PREFIX}/www/data/moodledata>
AllowOverride None
Order Deny,Allow
Deny from all
</Directory>
3) Visit your Moodle site with a browser (i.e.,
http://your.server.com/moodle), and you should
be taken to the install.php script, which will lead
you through creating a config.php file and then
setting up Moodle, creating an admin account etc.
4) Set up a cron task to call the file admin/cron.php
every five minutes or so. You can do so by using wget,
links or something similar to open the web page
http://your.server.com/moodle/admin/cron.php.
For more information, see the INSTALL DOCUMENTATION:
http://moodle.org/doc
If you have real trouble, please visit the Moodle course
"Using Moodle" on moodle.org.
|