Lines 11-18
Link Here
|
11 |
2) Add the following to your Apache configuration, and |
11 |
2) Add the following to your Apache configuration, and |
12 |
restart the server: |
12 |
restart the server: |
13 |
|
13 |
|
|
|
14 |
### Add the AcceptPathInfo directive only for Apache 2.0.30 or later. |
14 |
Alias /moodle %%PREFIX%%/%%MOODLEDIR%%/ |
15 |
Alias /moodle %%PREFIX%%/%%MOODLEDIR%%/ |
15 |
AcceptPathInfo On ### Add this directive only for Apache 2.0.30 or later. |
16 |
AcceptPathInfo On |
16 |
<Directory %%PREFIX%%/%%MOODLEDIR%%> |
17 |
<Directory %%PREFIX%%/%%MOODLEDIR%%> |
17 |
AllowOverride None |
18 |
AllowOverride None |
18 |
Order Allow,Deny |
19 |
Order Allow,Deny |
Lines 20-26
Link Here
|
20 |
</Directory> |
21 |
</Directory> |
21 |
<Directory %%PREFIX%%/%%MOODLEDATADIR%%> |
22 |
<Directory %%PREFIX%%/%%MOODLEDATADIR%%> |
22 |
AllowOverride None |
23 |
AllowOverride None |
23 |
Order Deny,Allow |
24 |
Order Allow,Deny |
24 |
Deny from all |
25 |
Deny from all |
25 |
</Directory> |
26 |
</Directory> |
26 |
|
27 |
|
Lines 38-51
Link Here
|
38 |
set up whatever file permissions you deem more adequate. |
39 |
set up whatever file permissions you deem more adequate. |
39 |
For instance, user=root, group=www, mask=640. |
40 |
For instance, user=root, group=www, mask=640. |
40 |
|
41 |
|
41 |
4) Set up a cron task to call the file admin/cron.php |
42 |
4) Set up a cron task to invoke the file admin/cron.php |
42 |
every five minutes or so. You can do so by using wget, |
43 |
every five minutes or so. For instance: |
43 |
links or something similar to open the web page |
44 |
*/5 * * * * fetch http://your.server.com/moodle/admin/cron.php |
44 |
http://your.server.com/moodle/admin/cron.php. |
|
|
45 |
|
45 |
|
46 |
For more information, see the INSTALL DOCUMENTATION: |
46 |
For more information, see the INSTALL DOCUMENTATION: |
47 |
|
47 |
|
48 |
http://docs.moodle.org/en/Installing_Moodle |
48 |
http://docs.moodle.org/en/Installing_Moodle |
|
|
49 |
|
50 |
If you are upgrading from an earlier version of Moodle, check out |
51 |
possible additional steps at: |
52 |
|
53 |
http://docs.moodle.org/en/Upgrading_to_Moodle_1.7 |
49 |
|
54 |
|
50 |
If you have real trouble, please visit the Moodle course |
55 |
If you have real trouble, please visit the Moodle course |
51 |
"Using Moodle" on moodle.org. |
56 |
"Using Moodle" on moodle.org. |