]> git.mjollnir.org Git - moodle.git/commitdiff
Added some documentation about a few preferences that are only in config.php
authormoodler <moodler>
Sun, 8 Feb 2004 14:27:54 +0000 (14:27 +0000)
committermoodler <moodler>
Sun, 8 Feb 2004 14:27:54 +0000 (14:27 +0000)
right now.

config-dist.php

index 80bdc1e4a26204824674a9dfc0fa2e01c55e0021..82b89934d86f8c32c446be9e5cdb2c5f334766a4 100644 (file)
@@ -133,6 +133,28 @@ $CFG->admin = 'admin';
 // 
 // eg   $CFG->textfilter1 = "mod/glossary/dynalink.php";
 //      $CFG->textfilter2 = "library/librarylib.php";
+//      $CFG->textfilter3 = "filter/censor/censor.php";
+
+
+
+//=========================================================================
+// 8. OTHER MISCELLANEOUS SETTINGS (ignore these for new installations)
+//=========================================================================
+//
+// Prevent users from updating their profile images
+//      $CFG->disableuserimages = true;  
+//
+// Allow Google and Google users enter your site automatically as guests
+//      $CFG->opentogoogle = true;       
+//
+// Restrict certain usernames from doing things that may mess up a site
+// This is especially useful for demonstration teacher accounts
+//      $CFG->restrictusers = 'teacher,fred,jim';
+//
+// Prevent scheduled backups from operating (and hide the GUI for them)
+// Useful for webhost operators who have alternate methods of backups
+//      $CFG->disablescheduledbackups = true;
+
 
 
 //=========================================================================