Updated config-dist.php since options have moved out of it

This commit is contained in:
moodler 2004-02-10 05:06:12 +00:00
parent d523d2ead1
commit 9284861420

View file

@ -124,44 +124,20 @@ $CFG->admin = 'admin';
//========================================================================= //=========================================================================
// 7. TEXT FILTERS (most people can just ignore this setting) // 7. OTHER MISCELLANEOUS SETTINGS (ignore these for new installations)
//=========================================================================
// This is a new and experimental feature that allows text filters to
// be used on all printed texts in Moodle. To add text filters, you
// need to specify the path to a file that contains a standard textfilter.
// The numbers need to start at one and increment up to ten.
//
// 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 // Prevent users from updating their profile images
// $CFG->disableuserimages = true; // $CFG->disableuserimages = true;
// //
// Allow Google and Google users enter your site automatically as guests // Prevent scheduled backups from operating (and hide the GUI for them)
// $CFG->opentogoogle = true; // Useful for webhost operators who have alternate methods of backups
// $CFG->disablescheduledbackups = true;
// //
// Restrict certain usernames from doing things that may mess up a site // Restrict certain usernames from doing things that may mess up a site
// This is especially useful for demonstration teacher accounts // This is especially useful for demonstration teacher accounts
// $CFG->restrictusers = 'teacher,fred,jim'; // $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;
//
// On busy sites that use filters (such as the glossary autolinking) this
// may help - it specifies time in seconds to keep copies of formatted texts.
// $CFG->cachetext = 600;
// It has some disadvantages:
// 1) Texts will take this long to regenerate, so changes to the glossary
// will not be evident immediately.
// 2) It won't work with filters that use user settings eg: multilang