]> git.mjollnir.org Git - moodle.git/commitdiff
Updating with sane default values
authormartin <martin>
Thu, 22 Nov 2001 06:42:01 +0000 (06:42 +0000)
committermartin <martin>
Thu, 22 Nov 2001 06:42:01 +0000 (06:42 +0000)
config.php

index e9dfee8743f1f00ab398bbacd050afccb58344c4..77b4a79d8112aa4ebe2adf9ff9c7412293454711 100644 (file)
 $CFG->dbtype    = "mysql";       // eg mysql, postgres, oracle, access etc 
 $CFG->dbhost    = "localhost";   // eg localhost 
 $CFG->dbname    = "moodle";      // eg moodle
-$CFG->dbuser    = "moodle";
-$CFG->dbpass    = "moodle";
+$CFG->dbuser    = "muser";
+$CFG->dbpass    = "mpassword";
 
 
 // Next you need to tell Moodle where it is, and where it can save files.
 
-$CFG->wwwroot   = "http://server.dougiamas.net/moodle";
-$CFG->dirroot   = "/web/server/moodle";
-$CFG->dataroot  = "/web/moodledata";    // Web-server writeable
+$CFG->wwwroot   = "http://example.com/moodle";
+$CFG->dirroot   = "/home/httpd/moodle";
+$CFG->dataroot  = "/home/moodledata";    // Web-server writeable
 
 
 // Choose a theme from the "themes" folder.  Default theme is "standard".
@@ -33,7 +33,7 @@ $CFG->theme     = "standard";
 // Give the full name (eg mail.example.com) of an SMTP server that the 
 // web server machine has access to (to send mail).  Default: "localhost".
 
-$CFG->smtphost  = "dougiamas.com";
+$CFG->smtphost  = "mail.example.com";
 
 
 // You should not need to change anything below this line