2001-11-22 06:23:56 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
//
|
|
|
|
// setup.php
|
|
|
|
//
|
|
|
|
// Sets up sessions, connects to databases and so on
|
|
|
|
//
|
|
|
|
// Normally this is only called by the main config.php file
|
|
|
|
//
|
|
|
|
// Normally this file does not need to be edited.
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
2002-09-19 12:01:55 +00:00
|
|
|
/// If there are any errors in the standard libraries we want to know!
|
2003-01-01 06:40:31 +00:00
|
|
|
error_reporting(E_ALL);
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-12-07 07:27:58 +00:00
|
|
|
/// Connect to the database using adodb
|
|
|
|
|
2003-04-10 13:46:52 +00:00
|
|
|
$CFG->libdir = "$CFG->dirroot/lib";
|
2003-01-12 06:31:07 +00:00
|
|
|
|
2003-01-05 14:19:20 +00:00
|
|
|
require_once("$CFG->libdir/adodb/adodb.inc.php"); // Database access functions
|
2003-01-02 11:34:00 +00:00
|
|
|
|
|
|
|
$db = &ADONewConnection($CFG->dbtype);
|
|
|
|
|
2003-05-07 08:07:48 +00:00
|
|
|
error_reporting(0); // Hide errors
|
2003-05-09 02:20:03 +00:00
|
|
|
|
|
|
|
if (!isset($CFG->dbpersist) or !empty($CFG->dbpersist)) { // Use persistent connection (default)
|
|
|
|
$dbconnected = $db->PConnect($CFG->dbhost,$CFG->dbuser,$CFG->dbpass,$CFG->dbname);
|
|
|
|
} else { // Use single connection
|
|
|
|
$dbconnected = $db->Connect($CFG->dbhost,$CFG->dbuser,$CFG->dbpass,$CFG->dbname);
|
|
|
|
}
|
|
|
|
if (! $dbconnected) {
|
|
|
|
echo "<font color=\"#990000\">";
|
|
|
|
echo "<p>Error: Moodle could not connect to the database.</p>";
|
|
|
|
echo "<p>It's possible the database itself is just not working at the moment.</p>";
|
|
|
|
echo "<p>The admin should
|
|
|
|
also check that the database details have been correctly specified in config.php</p>";
|
|
|
|
echo "<p>Database host: $CFG->dbhost<br />";
|
|
|
|
echo "Database name: $CFG->dbname<br />";
|
|
|
|
echo "Database user: $CFG->dbuser<br />";
|
|
|
|
if (!isset($CFG->dbpersist)) {
|
|
|
|
echo "<p>The admin should also try setting this in config.php: $"."CFG->dbpersist = false; </p>";
|
2003-05-07 08:03:43 +00:00
|
|
|
}
|
2003-05-09 02:20:03 +00:00
|
|
|
echo "</font>";
|
|
|
|
die;
|
2002-12-07 07:27:58 +00:00
|
|
|
}
|
|
|
|
|
2003-05-07 08:07:48 +00:00
|
|
|
error_reporting(E_ALL); // Show errors from now on.
|
|
|
|
|
2003-01-01 09:29:05 +00:00
|
|
|
if (!isset($CFG->prefix)) { // Just in case it isn't defined in config.php
|
|
|
|
$CFG->prefix = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-10 13:46:52 +00:00
|
|
|
/// Define admin directory
|
|
|
|
|
|
|
|
if (!isset($CFG->admin)) { // Just in case it isn't defined in config.php
|
|
|
|
$CFG->admin = "admin"; // This is relative to the wwwroot and dirroot
|
|
|
|
}
|
|
|
|
|
2002-12-07 07:27:58 +00:00
|
|
|
|
2002-09-19 12:01:55 +00:00
|
|
|
/// Load up standard libraries
|
2002-08-17 13:01:06 +00:00
|
|
|
|
2003-01-05 14:19:20 +00:00
|
|
|
require_once("$CFG->libdir/weblib.php"); // Functions for producing HTML
|
|
|
|
require_once("$CFG->libdir/datalib.php"); // Functions for accessing databases
|
|
|
|
require_once("$CFG->libdir/moodlelib.php"); // Other general-purpose functions
|
2002-08-17 13:01:06 +00:00
|
|
|
|
|
|
|
|
2002-09-19 12:01:55 +00:00
|
|
|
/// Load up any configuration from the config table
|
|
|
|
|
2002-12-20 14:44:14 +00:00
|
|
|
if ($configs = get_records("config")) {
|
2002-09-19 12:01:55 +00:00
|
|
|
$CFG = (array)$CFG;
|
|
|
|
foreach ($configs as $config) {
|
|
|
|
$CFG[$config->name] = $config->value;
|
|
|
|
}
|
|
|
|
$CFG = (object)$CFG;
|
|
|
|
unset($configs);
|
|
|
|
unset($config);
|
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-08-17 13:01:06 +00:00
|
|
|
|
2002-12-30 03:24:07 +00:00
|
|
|
/// Set error reporting back to normal
|
2003-01-01 08:48:15 +00:00
|
|
|
if (empty($CFG->debug)) {
|
|
|
|
$CFG->debug = 7;
|
|
|
|
}
|
2003-05-26 15:38:52 +00:00
|
|
|
error_reporting($CFG->debug);
|
2002-12-30 03:24:07 +00:00
|
|
|
|
|
|
|
|
2003-01-20 14:03:11 +00:00
|
|
|
/// File permissions on created directories in the $CFG->dataroot
|
|
|
|
|
|
|
|
if (empty($CFG->directorypermissions)) {
|
|
|
|
$CFG->directorypermissions = 0777; // Must be octal (that's why it's here)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-01-24 04:31:58 +00:00
|
|
|
/// Set session timeouts
|
|
|
|
if (!empty($CFG->sessiontimeout)) {
|
|
|
|
ini_set("session.gc_maxlifetime", $CFG->sessiontimeout);
|
|
|
|
}
|
|
|
|
|
2003-10-17 12:30:17 +00:00
|
|
|
/// Set sessioncookie variable if it isn't already
|
|
|
|
if (!isset($CFG->sessioncookie)) {
|
|
|
|
$CFG->sessioncookie = '';
|
|
|
|
}
|
2003-01-24 04:31:58 +00:00
|
|
|
|
2002-09-19 12:01:55 +00:00
|
|
|
/// Location of standard files
|
2001-11-22 06:23:56 +00:00
|
|
|
|
|
|
|
$CFG->wordlist = "$CFG->libdir/wordlist.txt";
|
|
|
|
$CFG->javascript = "$CFG->libdir/javascript.php";
|
2002-08-28 13:07:10 +00:00
|
|
|
$CFG->moddata = "moddata";
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-09-19 14:07:24 +00:00
|
|
|
|
2002-09-19 12:01:55 +00:00
|
|
|
/// Load up theme variables (colours etc)
|
2002-08-17 13:01:06 +00:00
|
|
|
|
2002-09-19 12:01:55 +00:00
|
|
|
if (!isset($CFG->theme)) {
|
|
|
|
$CFG->theme = "standard";
|
|
|
|
}
|
2002-12-13 03:15:28 +00:00
|
|
|
include("$CFG->dirroot/theme/$CFG->theme/config.php");
|
2002-08-17 13:01:06 +00:00
|
|
|
|
2002-12-10 13:37:37 +00:00
|
|
|
$CFG->stylesheet = "$CFG->wwwroot/theme/$CFG->theme/styles.php";
|
|
|
|
$CFG->header = "$CFG->dirroot/theme/$CFG->theme/header.html";
|
|
|
|
$CFG->footer = "$CFG->dirroot/theme/$CFG->theme/footer.html";
|
|
|
|
|
2003-09-14 12:25:16 +00:00
|
|
|
if (empty($THEME->custompix)) {
|
|
|
|
$CFG->pixpath = "$CFG->wwwroot/pix";
|
|
|
|
$CFG->modpixpath = "$CFG->wwwroot/mod";
|
|
|
|
} else {
|
|
|
|
$CFG->pixpath = "$CFG->wwwroot/theme/$CFG->theme/pix";
|
|
|
|
$CFG->modpixpath = "$CFG->wwwroot/theme/$CFG->theme/pix/mod";
|
|
|
|
}
|
|
|
|
|
2002-09-19 14:07:24 +00:00
|
|
|
|
2003-07-28 16:37:12 +00:00
|
|
|
/// A hack to get around magic_quotes_gpc being turned off
|
|
|
|
|
2003-07-29 01:54:16 +00:00
|
|
|
if (!ini_get_bool("magic_quotes_gpc") ) {
|
2003-07-28 16:37:12 +00:00
|
|
|
foreach ($_GET as $key => $var) {
|
2003-07-29 01:54:16 +00:00
|
|
|
if (!is_array($var)) {
|
|
|
|
$_GET[$key] = addslashes($var);
|
|
|
|
} else {
|
|
|
|
foreach ($var as $arrkey => $arrvar) {
|
|
|
|
$var[$arrkey] = addslashes($arrvar);
|
|
|
|
}
|
|
|
|
$_GET[$key] = $var;
|
|
|
|
}
|
2003-07-28 16:37:12 +00:00
|
|
|
}
|
|
|
|
foreach ($_POST as $key => $var) {
|
2003-07-29 01:54:16 +00:00
|
|
|
if (!is_array($var)) {
|
|
|
|
$_POST[$key] = addslashes($var);
|
|
|
|
} else {
|
|
|
|
foreach ($var as $arrkey => $arrvar) {
|
|
|
|
$var[$arrkey] = addslashes($arrvar);
|
|
|
|
}
|
|
|
|
$_POST[$key] = $var;
|
|
|
|
}
|
2003-07-28 16:37:12 +00:00
|
|
|
}
|
|
|
|
}
|
2002-07-02 07:02:28 +00:00
|
|
|
|
2002-09-19 14:07:24 +00:00
|
|
|
|
2002-09-19 12:01:55 +00:00
|
|
|
/// The following is a hack to get around the problem of PHP installations
|
|
|
|
/// that have "register_globals" turned off (default since PHP 4.1.0).
|
|
|
|
/// Eventually I'll go through and upgrade all the code to make this unnecessary
|
2002-08-23 02:14:19 +00:00
|
|
|
|
2003-05-26 15:38:52 +00:00
|
|
|
if (isset($_GET)) {
|
|
|
|
extract($_GET, EXTR_SKIP); // Skip existing variables, ie CFG
|
|
|
|
}
|
|
|
|
if (isset($_POST)) {
|
|
|
|
extract($_POST, EXTR_SKIP); // Skip existing variables, ie CFG
|
2002-09-19 12:01:55 +00:00
|
|
|
}
|
|
|
|
if (isset($_SERVER)) {
|
|
|
|
extract($_SERVER);
|
2002-08-23 02:14:19 +00:00
|
|
|
}
|
2002-09-19 14:07:24 +00:00
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-09-19 12:01:55 +00:00
|
|
|
/// Load up global environment variables
|
2001-11-22 06:23:56 +00:00
|
|
|
|
|
|
|
class object {};
|
|
|
|
|
2003-08-12 07:02:34 +00:00
|
|
|
if (!isset($nomoodlecookie)) {
|
2003-10-17 12:30:17 +00:00
|
|
|
session_name('MoodleSession'.$CFG->sessioncookie);
|
2003-08-12 07:02:34 +00:00
|
|
|
@session_start();
|
|
|
|
if (! isset($_SESSION['SESSION'])) {
|
|
|
|
$_SESSION['SESSION'] = new object;
|
|
|
|
}
|
|
|
|
if (! isset($_SESSION['USER'])) {
|
|
|
|
$_SESSION['USER'] = new object;
|
|
|
|
}
|
|
|
|
|
|
|
|
$SESSION = &$_SESSION['SESSION']; // Makes them easier to reference
|
|
|
|
$USER = &$_SESSION['USER'];
|
2003-02-27 02:38:55 +00:00
|
|
|
}
|
|
|
|
|
2002-12-29 04:17:32 +00:00
|
|
|
if (isset($FULLME)) {
|
|
|
|
$ME = $FULLME;
|
|
|
|
} else {
|
2002-12-20 14:44:14 +00:00
|
|
|
$FULLME = qualified_me();
|
2002-12-29 04:17:32 +00:00
|
|
|
$ME = strip_querystring($FULLME);
|
2002-12-20 14:44:14 +00:00
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2003-01-13 12:06:33 +00:00
|
|
|
/// In VERY rare cases old PHP server bugs (it has been found on PHP 4.1.2 running
|
|
|
|
/// as a CGI under IIS on Windows) may require that you uncomment the following:
|
|
|
|
// session_register("USER");
|
|
|
|
// session_register("SESSION");
|
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-12-08 17:26:21 +00:00
|
|
|
/// Set language/locale of printed times. If user has chosen a language that
|
|
|
|
/// that is different from the site language, then use the locale specified
|
|
|
|
/// in the language file. Otherwise, if the admin hasn't specified a locale
|
|
|
|
/// then use the one from the default language. Otherwise (and this is the
|
|
|
|
/// majority of cases), use the stored locale specified by admin.
|
|
|
|
|
2003-05-26 15:38:52 +00:00
|
|
|
if (isset($_GET['lang'])) {
|
2003-01-20 08:09:25 +00:00
|
|
|
$SESSION->lang = $lang;
|
|
|
|
}
|
2003-05-26 15:38:52 +00:00
|
|
|
if (empty($CFG->lang)) {
|
|
|
|
$CFG->lang = "en";
|
|
|
|
}
|
2003-01-20 08:06:09 +00:00
|
|
|
if (!empty($SESSION->lang) and ($SESSION->lang != $CFG->lang) ) {
|
|
|
|
$CFG->locale = get_string("locale");
|
|
|
|
} else if (!empty($USER->lang) and ($USER->lang != $CFG->lang) ) {
|
2002-12-08 17:26:21 +00:00
|
|
|
$CFG->locale = get_string("locale");
|
2002-12-29 17:32:32 +00:00
|
|
|
} else if (empty($CFG->locale)) {
|
2002-12-08 17:26:21 +00:00
|
|
|
$CFG->locale = get_string("locale");
|
|
|
|
set_config("locale", $CFG->locale); // cache it to save lookups in future
|
|
|
|
}
|
|
|
|
setlocale (LC_TIME, $CFG->locale);
|
|
|
|
setlocale (LC_CTYPE, $CFG->locale);
|
|
|
|
setlocale (LC_COLLATE, $CFG->locale);
|
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
?>
|