Note: You are currently viewing documentation for Moodle 2.0. Up-to-date documentation for the latest stable version is available here: ERNEST obagboye.

User talk:ERNEST obagboye

From MoodleDocs

I am new to moodle. I want someone to help resolve a problem I am having with my moodle installation on an ubuntu 9.10. I am stuck here and do not know how to resolve this problem.Below is the message I get from my installation:

Configuration completed

Moodle made an attempt to save your configuration in a file in the root of your Moodle installation.

The installer script was not able to automatically create a config.php file containing your chosen settings, probably because the Moodle directory is not writeable. You can manually copy the following code into a file named config.php within the root directory of Moodle.


<?php /// Moodle Configuration File

unset($CFG);

$CFG->dbtype = 'mysql'; $CFG->dbhost = 'localhost'; $CFG->dbname = 'moodle'; $CFG->dbuser = 'root'; $CFG->dbpass = 'user'; $CFG->dbpersist = false; $CFG->prefix = 'mdl_';

$CFG->wwwroot = 'http://192.168.10.197'; $CFG->dirroot = '/var/www/moodle'; $CFG->dataroot = '/var/moodledata'; $CFG->admin = 'admin';

$CFG->directorypermissions = 00777; // try 02777 on a server in Safe Mode

$CFG->passwordsaltmain = 'hU_S%iJe(8#Z31Ucir=hUOO5#i!';

require_once("$CFG->dirroot/lib/setup.php"); // MAKE SURE WHEN YOU EDIT THIS FILE THAT THERE ARE NO SPACES, BLANK LINES, // RETURNS, OR ANYTHING ELSE AFTER THE TWO CHARACTERS ON THE NEXT LINE. ?>

Can I suggest that you ask for help in the Moodle Installation Problems forum: http://moodle.org/mod/forum/view.php?id=28. You are more likely to get help there.--Tim Hunt 21:05, 4 February 2010 (UTC)