From: moodler Date: Thu, 24 Jul 2003 08:53:43 +0000 (+0000) Subject: New FAQ about the admin account X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=6c6def145ca7777ce2f6de57ac9be9bb7474f094;p=moodle.git New FAQ about the admin account --- diff --git a/lang/en/docs/faq.html b/lang/en/docs/faq.html index b86f1cda61..8151e3d1d6 100644 --- a/lang/en/docs/faq.html +++ b/lang/en/docs/faq.html @@ -140,8 +140,12 @@ + + + +

Whenever I try to access or view a file that I uploaded, I get an error "File not Found"

@@ -386,6 +390,22 @@

Assuming you are using Apache, then it's quite likely that your setting in config.php for $CFG->wwwroot is different from the actual URL you are using to access the site. Also try turning off "secureforms" in the admin settings.

+ +

During the initial setting-up process, I never get asked to create an admin account!

+ +

This is a known bug in versions of Moodle up to 1.0.9, now fixed in the main code and version 1.1.

+ +

It doesn't affect all people, it only occurs when the person installing Moodle has a + cookie in their browser from another program on the same site, called "user", "admin", or "teacher".

+ +

Quick fixes include deleting those cookies from your browser before installing, using a different browser, or editing the file moodle/admin/user.php to insert these lines near the top:

+ +

unset($user);
unset($admin);
unset($teacher);

+ +

After performing any of these fixes it might be a good idea to drop all the tables in your database and re-install again from scratch.

+ + +