exit(1);
}
-/// Detect CLI scripts - CLI scripts are executed from command line, do not have session and we do not want HTML in output
- if (!defined('CLI_SCRIPT')) { // CLI_SCRIPT might be defined in 'fake' CLI scripts like admin/cron.php
- if (isset($_SERVER['REMOTE_ADDR'])) {
- define('CLI_SCRIPT', false);
- } else {
- /** @ignore */
- define('CLI_SCRIPT', true);
- }
+// Detect CLI scripts - CLI scripts are executed from command line, do not have session and we do not want HTML in output
+if (!defined('CLI_SCRIPT')) { // CLI_SCRIPT might be defined in 'fake' CLI scripts like admin/cron.php
+ if (isset($_SERVER['REMOTE_ADDR'])) {
+ define('CLI_SCRIPT', false);
+ } else {
+ /** @ignore */
+ define('CLI_SCRIPT', true);
}
+}
-/// sometimes default PHP settings are borked on shared hosting servers, I wonder why they have to do that??
- @ini_set('precision', 14); // needed for upgrades and gradebook
+// sometimes default PHP settings are borked on shared hosting servers, I wonder why they have to do that??
+@ini_set('precision', 14); // needed for upgrades and gradebook
+// The current directory in PHP version 4.3.0 and above isn't necessarily the
+// directory of the script when run from the command line. The require_once()
+// would fail, so we'll have to chdir()
+if (!isset($_SERVER['REMOTE_ADDR']) && isset($_SERVER['argv'][0])) {
+ chdir(dirname($_SERVER['argv'][0]));
+}
-/// The current directory in PHP version 4.3.0 and above isn't necessarily the
-/// directory of the script when run from the command line. The require_once()
-/// would fail, so we'll have to chdir()
- if (!isset($_SERVER['REMOTE_ADDR']) && isset($_SERVER['argv'][0])) {
- chdir(dirname($_SERVER['argv'][0]));
- }
+// Store settings from config.php in array in $CFG - we can use it later to detect problems and overrides
+$CFG->config_php_settings = (array)$CFG;
+// Set up some paths.
+$CFG->libdir = $CFG->dirroot .'/lib';
-/// Store settings from config.php in array in $CFG - we can use it later to detect problems and overrides
- $CFG->config_php_settings = (array)$CFG;
+if (!isset($CFG->themedir)) {
+ $CFG->themedir = $CFG->dirroot.'/theme';
+ $CFG->themewww = $CFG->wwwroot.'/theme';
+}
-/// Set up some paths.
- $CFG->libdir = $CFG->dirroot .'/lib';
+// Set httpswwwroot default value (this variable will replace $CFG->wwwroot
+// inside some URLs used in HTTPSPAGEREQUIRED pages.
+$CFG->httpswwwroot = $CFG->wwwroot;
+$CFG->httpsthemewww = $CFG->themewww;
- if (!isset($CFG->themedir)) {
- $CFG->themedir = $CFG->dirroot.'/theme';
- $CFG->themewww = $CFG->wwwroot.'/theme';
- }
+require_once($CFG->libdir .'/setuplib.php'); // Functions that MUST be loaded first
-/// Set httpswwwroot default value (this variable will replace $CFG->wwwroot
-/// inside some URLs used in HTTPSPAGEREQUIRED pages.
- $CFG->httpswwwroot = $CFG->wwwroot;
- $CFG->httpsthemewww = $CFG->themewww;
+// Time to start counting
+init_performance_info();
- require_once($CFG->libdir .'/setuplib.php'); // Functions that MUST be loaded first
+// Put $OUTPUT in place, so errors can be displayed.
+$OUTPUT = new bootstrap_renderer();
-/// Time to start counting
- init_performance_info();
+// set handler for uncought exceptions - equivalent to print_error() call
+set_exception_handler('default_exception_handler');
-/// Put $OUTPUT in place, so errors can be displayed.
- $OUTPUT = new bootstrap_renderer();
+// If there are any errors in the standard libraries we want to know!
+error_reporting(E_ALL);
-/// set handler for uncought exceptions - equivalent to print_error() call
- set_exception_handler('default_exception_handler');
+// Just say no to link prefetching (Moz prefetching, Google Web Accelerator, others)
+// http://www.google.com/webmasters/faq.html#prefetchblock
+if (!empty($_SERVER['HTTP_X_moz']) && $_SERVER['HTTP_X_moz'] === 'prefetch'){
+ header($_SERVER['SERVER_PROTOCOL'] . ' 404 Prefetch Forbidden');
+ echo('Prefetch request forbidden.');
+ exit(1);
+}
-/// If there are any errors in the standard libraries we want to know!
- error_reporting(E_ALL);
+// 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
+}
-/// Just say no to link prefetching (Moz prefetching, Google Web Accelerator, others)
-/// http://www.google.com/webmasters/faq.html#prefetchblock
- if (!empty($_SERVER['HTTP_X_moz']) && $_SERVER['HTTP_X_moz'] === 'prefetch'){
- header($_SERVER['SERVER_PROTOCOL'] . ' 404 Prefetch Forbidden');
- echo('Prefetch request forbidden.');
- exit(1);
- }
+if (!isset($CFG->prefix)) { // Just in case it isn't defined in config.php
+ $CFG->prefix = '';
+}
-/// 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
- }
+// Load up standard libraries
+require_once($CFG->libdir .'/textlib.class.php'); // Functions to handle multibyte strings
+require_once($CFG->libdir .'/filterlib.php'); // Functions for filtering test as it is output
+require_once($CFG->libdir .'/ajax/ajaxlib.php'); // Functions for managing our use of JavaScript and YUI
+require_once($CFG->libdir .'/weblib.php'); // Functions relating to HTTP and content
+require_once($CFG->libdir .'/outputlib.php'); // Functions for generating output
+require_once($CFG->libdir .'/navigationlib.php'); // Class for generating Navigation structure
+require_once($CFG->libdir .'/dmllib.php'); // Database access
+require_once($CFG->libdir .'/datalib.php'); // Legacy lib with a big-mix of functions.
+require_once($CFG->libdir .'/accesslib.php'); // Access control functions
+require_once($CFG->libdir .'/deprecatedlib.php'); // Deprecated functions included for backward compatibility
+require_once($CFG->libdir .'/moodlelib.php'); // Other general-purpose functions
+require_once($CFG->libdir .'/pagelib.php'); // Library that defines the moodle_page class, used for $PAGE
+require_once($CFG->libdir .'/blocklib.php'); // Library for controlling blocks
+require_once($CFG->libdir .'/eventslib.php'); // Events functions
+require_once($CFG->libdir .'/grouplib.php'); // Groups functions
+require_once($CFG->libdir .'/sessionlib.php'); // All session and cookie related stuff
+require_once($CFG->libdir .'/editorlib.php'); // All text editor related functions and classes
+
+//point pear include path to moodles lib/pear so that includes and requires will search there for files before anywhere else
+//the problem is that we need specific version of quickforms and hacked excel files :-(
+ini_set('include_path', $CFG->libdir.'/pear' . PATH_SEPARATOR . ini_get('include_path'));
+//point zend include path to moodles lib/zend so that includes and requires will search there for files before anywhere else
+ini_set('include_path', $CFG->libdir.'/zend' . PATH_SEPARATOR . ini_get('include_path'));
+
+// make sure PHP is not severly misconfigured
+setup_validate_php_configuration();
+
+// Increase memory limits if possible
+raise_memory_limit('96M'); // We should never NEED this much but just in case...
+
+// Connect to the database
+setup_DB();
+
+// Disable errors for now - needed for installation when debug enabled in config.php
+if (isset($CFG->debug)) {
+ $originalconfigdebug = $CFG->debug;
+ unset($CFG->debug);
+} else {
+ $originalconfigdebug = -1;
+}
- if (!isset($CFG->prefix)) { // Just in case it isn't defined in config.php
- $CFG->prefix = '';
- }
+// Load up any configuration from the config table
+try {
+ $CFG = get_config();
+} catch (dml_read_exception $e) {
+ // most probably empty db, going to install soon
+}
-/// Load up standard libraries
- require_once($CFG->libdir .'/textlib.class.php'); // Functions to handle multibyte strings
- require_once($CFG->libdir .'/filterlib.php'); // Functions for filtering test as it is output
- require_once($CFG->libdir .'/ajax/ajaxlib.php'); // Functions for managing our use of JavaScript and YUI
- require_once($CFG->libdir .'/weblib.php'); // Functions relating to HTTP and content
- require_once($CFG->libdir .'/outputlib.php'); // Functions for generating output
- require_once($CFG->libdir .'/navigationlib.php'); // Class for generating Navigation structure
- require_once($CFG->libdir .'/dmllib.php'); // Database access
- require_once($CFG->libdir .'/datalib.php'); // Legacy lib with a big-mix of functions.
- require_once($CFG->libdir .'/accesslib.php'); // Access control functions
- require_once($CFG->libdir .'/deprecatedlib.php'); // Deprecated functions included for backward compatibility
- require_once($CFG->libdir .'/moodlelib.php'); // Other general-purpose functions
- require_once($CFG->libdir .'/pagelib.php'); // Library that defines the moodle_page class, used for $PAGE
- require_once($CFG->libdir .'/blocklib.php'); // Library for controlling blocks
- require_once($CFG->libdir .'/eventslib.php'); // Events functions
- require_once($CFG->libdir .'/grouplib.php'); // Groups functions
- require_once($CFG->libdir .'/sessionlib.php'); // All session and cookie related stuff
- require_once($CFG->libdir .'/editorlib.php'); // All text editor related functions and classes
-
- //point pear include path to moodles lib/pear so that includes and requires will search there for files before anywhere else
- //the problem is that we need specific version of quickforms and hacked excel files :-(
- ini_set('include_path', $CFG->libdir.'/pear' . PATH_SEPARATOR . ini_get('include_path'));
- //point zend include path to moodles lib/zend so that includes and requires will search there for files before anywhere else
- ini_set('include_path', $CFG->libdir.'/zend' . PATH_SEPARATOR . ini_get('include_path'));
-
-/// make sure PHP is not severly misconfigured
- setup_validate_php_configuration();
-
-/// Increase memory limits if possible
- raise_memory_limit('96M'); // We should never NEED this much but just in case...
-
- /// Connect to the database
- setup_DB();
-
-/// Disable errors for now - needed for installation when debug enabled in config.php
- if (isset($CFG->debug)) {
- $originalconfigdebug = $CFG->debug;
- unset($CFG->debug);
+// Verify upgrade is not running unless we are in a script that needs to execute in any case
+if (!defined('NO_UPGRADE_CHECK') and isset($CFG->upgraderunning)) {
+ if ($CFG->upgraderunning < time()) {
+ unset_config('upgraderunning');
} else {
- $originalconfigdebug = -1;
+ print_error('upgraderunning');
}
+}
-/// Load up any configuration from the config table
- try {
- $CFG = get_config();
- } catch (dml_read_exception $e) {
- // most probably empty db, going to install soon
- }
+// Turn on SQL logging if required
+if (!empty($CFG->logsql)) {
+ $DB->set_logging(true);
+}
-/// Verify upgrade is not running unless we are in a script that needs to execute in any case
- if (!defined('NO_UPGRADE_CHECK') and isset($CFG->upgraderunning)) {
- if ($CFG->upgraderunning < time()) {
- unset_config('upgraderunning');
- } else {
- print_error('upgraderunning');
- }
- }
+// Prevent warnings from roles when upgrading with debug on
+if (isset($CFG->debug)) {
+ $originaldatabasedebug = $CFG->debug;
+ unset($CFG->debug);
+} else {
+ $originaldatabasedebug = -1;
+}
-/// Turn on SQL logging if required
- if (!empty($CFG->logsql)) {
- $DB->set_logging(true);
- }
-/// Prevent warnings from roles when upgrading with debug on
- if (isset($CFG->debug)) {
- $originaldatabasedebug = $CFG->debug;
- unset($CFG->debug);
- } else {
- $originaldatabasedebug = -1;
- }
+// For now, only needed under apache (and probably unstable in other contexts)
+if (function_exists('register_shutdown_function')) {
+ register_shutdown_function('moodle_request_shutdown');
+}
+// Defining the site
+try {
+ $SITE = get_site();
+} catch (dml_read_exception $e) {
+ $SITE = null;
+}
-/// For now, only needed under apache (and probably unstable in other contexts)
- if (function_exists('register_shutdown_function')) {
- register_shutdown_function('moodle_request_shutdown');
- }
+if ($SITE) {
+ /**
+ * If $SITE global from {@link get_site()} is set then SITEID to $SITE->id, otherwise set to 1.
+ */
+ define('SITEID', $SITE->id);
+ // And the 'default' course
+ $COURSE = clone($SITE); // For now. This will usually get reset later in require_login() etc.
+} else {
+ /**
+ * @ignore
+ */
+ define('SITEID', 1);
+ // And the 'default' course
+ $COURSE = new object; // no site created yet
+ $COURSE->id = 1;
+}
-/// Defining the site
- try {
- $SITE = get_site();
- } catch (dml_read_exception $e) {
- $SITE = null;
- }
+// define SYSCONTEXTID in config.php if you want to save some queries (after install or upgrade!)
+if (!defined('SYSCONTEXTID')) {
+ get_system_context();
+}
- if ($SITE) {
- /**
- * If $SITE global from {@link get_site()} is set then SITEID to $SITE->id, otherwise set to 1.
- */
- define('SITEID', $SITE->id);
- /// And the 'default' course
- $COURSE = clone($SITE); // For now. This will usually get reset later in require_login() etc.
- } else {
- /**
- * @ignore
- */
- define('SITEID', 1);
- /// And the 'default' course
- $COURSE = new object; // no site created yet
- $COURSE->id = 1;
- }
+// Set error reporting back to normal
+if ($originaldatabasedebug == -1) {
+ $CFG->debug = DEBUG_MINIMAL;
+} else {
+ $CFG->debug = $originaldatabasedebug;
+}
+if ($originalconfigdebug !== -1) {
+ $CFG->debug = $originalconfigdebug;
+}
+unset($originalconfigdebug);
+unset($originaldatabasedebug);
+error_reporting($CFG->debug);
+
+// find out if PHP cofigured to display warnings,
+// this is a security problem because some moodle scripts may
+// disclose sensitive information
+if (ini_get_bool('display_errors')) {
+ define('WARN_DISPLAY_ERRORS_ENABLED', true);
+}
+// If we want to display Moodle errors, then try and set PHP errors to match
+if (!isset($CFG->debugdisplay)) {
+ // keep it "as is" during installation
+} else if (NO_DEBUG_DISPLAY) {
+ // some parts of Moodle cannot display errors and debug at all.
+ @ini_set('display_errors', '0');
+ @ini_set('log_errors', '1');
+} else if (empty($CFG->debugdisplay)) {
+ @ini_set('display_errors', '0');
+ @ini_set('log_errors', '1');
+} else {
+ // This is very problematic in XHTML strict mode!
+ @ini_set('display_errors', '1');
+}
- // define SYSCONTEXTID in config.php if you want to save some queries (after install or upgrade!)
- if (!defined('SYSCONTEXTID')) {
- get_system_context();
- }
+// detect unsupported upgrade jump as soon as possible - do not change anything, do not use system functions
+if (!empty($CFG->version) and $CFG->version < 2007101509) {
+ print_error('upgraderequires19', 'error');
+ die;
+}
-/// Set error reporting back to normal
- if ($originaldatabasedebug == -1) {
- $CFG->debug = DEBUG_MINIMAL;
- } else {
- $CFG->debug = $originaldatabasedebug;
- }
- if ($originalconfigdebug !== -1) {
- $CFG->debug = $originalconfigdebug;
- }
- unset($originalconfigdebug);
- unset($originaldatabasedebug);
- error_reporting($CFG->debug);
-
- // find out if PHP cofigured to display warnings,
- // this is a security problem because some moodle scripts may
- // disclose sensitive information
- if (ini_get_bool('display_errors')) {
- define('WARN_DISPLAY_ERRORS_ENABLED', true);
- }
- // If we want to display Moodle errors, then try and set PHP errors to match
- if (!isset($CFG->debugdisplay)) {
- // keep it "as is" during installation
- } else if (NO_DEBUG_DISPLAY) {
- // some parts of Moodle cannot display errors and debug at all.
- @ini_set('display_errors', '0');
- @ini_set('log_errors', '1');
- } else if (empty($CFG->debugdisplay)) {
- @ini_set('display_errors', '0');
- @ini_set('log_errors', '1');
+// Shared-Memory cache init -- will set $MCACHE
+// $MCACHE is a global object that offers at least add(), set() and delete()
+// with similar semantics to the memcached PHP API http://php.net/memcache
+// Ensure we define rcache - so we can later check for it
+// with a really fast and unambiguous $CFG->rcache === false
+if (!empty($CFG->cachetype)) {
+ if (empty($CFG->rcache)) {
+ $CFG->rcache = false;
} else {
- // This is very problematic in XHTML strict mode!
- @ini_set('display_errors', '1');
+ $CFG->rcache = true;
}
-/// detect unsupported upgrade jump as soon as possible - do not change anything, do not use system functions
- if (!empty($CFG->version) and $CFG->version < 2007101509) {
- print_error('upgraderequires19', 'error');
- die;
+ // do not try to initialize if cache disabled
+ if (!$CFG->rcache) {
+ $CFG->cachetype = '';
}
-/// Shared-Memory cache init -- will set $MCACHE
-/// $MCACHE is a global object that offers at least add(), set() and delete()
-/// with similar semantics to the memcached PHP API http://php.net/memcache
-/// Ensure we define rcache - so we can later check for it
-/// with a really fast and unambiguous $CFG->rcache === false
- if (!empty($CFG->cachetype)) {
- if (empty($CFG->rcache)) {
+ if ($CFG->cachetype === 'memcached' && !empty($CFG->memcachedhosts)) {
+ if (!init_memcached()) {
+ debugging("Error initialising memcached");
+ $CFG->cachetype = '';
$CFG->rcache = false;
- } else {
- $CFG->rcache = true;
}
-
- // do not try to initialize if cache disabled
- if (!$CFG->rcache) {
+ } else if ($CFG->cachetype === 'eaccelerator') {
+ if (!init_eaccelerator()) {
+ debugging("Error initialising eaccelerator cache");
$CFG->cachetype = '';
+ $CFG->rcache = false;
}
-
- if ($CFG->cachetype === 'memcached' && !empty($CFG->memcachedhosts)) {
- if (!init_memcached()) {
- debugging("Error initialising memcached");
- $CFG->cachetype = '';
- $CFG->rcache = false;
- }
- } else if ($CFG->cachetype === 'eaccelerator') {
- if (!init_eaccelerator()) {
- debugging("Error initialising eaccelerator cache");
- $CFG->cachetype = '';
- $CFG->rcache = false;
- }
- }
-
- } else { // just make sure it is defined
- $CFG->cachetype = '';
- $CFG->rcache = false;
}
-/// Set a default enrolment configuration (see bug 1598)
- if (!isset($CFG->enrol)) {
- $CFG->enrol = 'manual';
- }
+} else { // just make sure it is defined
+ $CFG->cachetype = '';
+ $CFG->rcache = false;
+}
-/// Set default enabled enrolment plugins
- if (!isset($CFG->enrol_plugins_enabled)) {
- $CFG->enrol_plugins_enabled = 'manual';
- }
+// Set a default enrolment configuration (see bug 1598)
+if (!isset($CFG->enrol)) {
+ $CFG->enrol = 'manual';
+}
-/// File permissions on created directories in the $CFG->dataroot
+// Set default enabled enrolment plugins
+if (!isset($CFG->enrol_plugins_enabled)) {
+ $CFG->enrol_plugins_enabled = 'manual';
+}
- if (empty($CFG->directorypermissions)) {
- $CFG->directorypermissions = 0777; // Must be octal (that's why it's here)
- }
- if (empty($CFG->filepermissions)) {
- $CFG->filepermissions = ($CFG->directorypermissions & 0666); // strip execute flags
- }
-/// better also set default umask because recursive mkdir() does not apply permissions recursively otherwise
- umask(0000);
-
-/// Calculate and set $CFG->ostype to be used everywhere. Possible values are:
-/// - WINDOWS: for any Windows flavour.
-/// - UNIX: for the rest
-/// Also, $CFG->os can continue being used if more specialization is required
- if (stristr(PHP_OS, 'win') && !stristr(PHP_OS, 'darwin')) {
- $CFG->ostype = 'WINDOWS';
- } else {
- $CFG->ostype = 'UNIX';
- }
- $CFG->os = PHP_OS;
+// 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)
+}
+if (empty($CFG->filepermissions)) {
+ $CFG->filepermissions = ($CFG->directorypermissions & 0666); // strip execute flags
+}
+// better also set default umask because recursive mkdir() does not apply permissions recursively otherwise
+umask(0000);
+
+// Calculate and set $CFG->ostype to be used everywhere. Possible values are:
+// - WINDOWS: for any Windows flavour.
+// - UNIX: for the rest
+// Also, $CFG->os can continue being used if more specialization is required
+if (stristr(PHP_OS, 'win') && !stristr(PHP_OS, 'darwin')) {
+ $CFG->ostype = 'WINDOWS';
+} else {
+ $CFG->ostype = 'UNIX';
+}
+$CFG->os = PHP_OS;
-/// Set up default frame target string, based on $CFG->framename
- $CFG->frametarget = frametarget();
+// Set up default frame target string, based on $CFG->framename
+$CFG->frametarget = frametarget();
-/// Setup cache dir for Smarty and others
- if (!file_exists($CFG->dataroot .'/cache')) {
- make_upload_directory('cache');
- }
+// Setup cache dir for Smarty and others
+if (!file_exists($CFG->dataroot .'/cache')) {
+ make_upload_directory('cache');
+}
-/// Configure ampersands in URLs
- @ini_set('arg_separator.output', '&');
+// Configure ampersands in URLs
+@ini_set('arg_separator.output', '&');
-/// Work around for a PHP bug see MDL-11237
- @ini_set('pcre.backtrack_limit', 20971520); // 20 MB
+// Work around for a PHP bug see MDL-11237
+@ini_set('pcre.backtrack_limit', 20971520); // 20 MB
-/// Location of standard files
- $CFG->wordlist = $CFG->libdir .'/wordlist.txt';
- $CFG->moddata = 'moddata';
+// Location of standard files
+$CFG->wordlist = $CFG->libdir .'/wordlist.txt';
+$CFG->moddata = 'moddata';
-/// Create the $PAGE global.
- if (!empty($CFG->moodlepageclass)) {
- $classname = $CFG->moodlepageclass;
- } else {
- $classname = 'moodle_page';
+// Create the $PAGE global.
+if (!empty($CFG->moodlepageclass)) {
+ $classname = $CFG->moodlepageclass;
+} else {
+ $classname = 'moodle_page';
+}
+$PAGE = new $classname();
+unset($classname);
+
+// A hack to get around magic_quotes_gpc being turned on
+// It is strongly recommended to disable "magic_quotes_gpc"!
+if (ini_get_bool('magic_quotes_gpc')) {
+ function stripslashes_deep($value) {
+ $value = is_array($value) ?
+ array_map('stripslashes_deep', $value) :
+ stripslashes($value);
+ return $value;
}
- $PAGE = new $classname();
- unset($classname);
-
-/// A hack to get around magic_quotes_gpc being turned on
-/// It is strongly recommended to disable "magic_quotes_gpc"!
- if (ini_get_bool('magic_quotes_gpc')) {
- function stripslashes_deep($value) {
- $value = is_array($value) ?
- array_map('stripslashes_deep', $value) :
- stripslashes($value);
- return $value;
- }
- $_POST = array_map('stripslashes_deep', $_POST);
- $_GET = array_map('stripslashes_deep', $_GET);
- $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
- $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
- if (!empty($_SERVER['REQUEST_URI'])) {
- $_SERVER['REQUEST_URI'] = stripslashes($_SERVER['REQUEST_URI']);
- }
- if (!empty($_SERVER['QUERY_STRING'])) {
- $_SERVER['QUERY_STRING'] = stripslashes($_SERVER['QUERY_STRING']);
- }
- if (!empty($_SERVER['HTTP_REFERER'])) {
- $_SERVER['HTTP_REFERER'] = stripslashes($_SERVER['HTTP_REFERER']);
- }
- if (!empty($_SERVER['PATH_INFO'])) {
- $_SERVER['PATH_INFO'] = stripslashes($_SERVER['PATH_INFO']);
- }
- if (!empty($_SERVER['PHP_SELF'])) {
- $_SERVER['PHP_SELF'] = stripslashes($_SERVER['PHP_SELF']);
- }
- if (!empty($_SERVER['PATH_TRANSLATED'])) {
- $_SERVER['PATH_TRANSLATED'] = stripslashes($_SERVER['PATH_TRANSLATED']);
- }
+ $_POST = array_map('stripslashes_deep', $_POST);
+ $_GET = array_map('stripslashes_deep', $_GET);
+ $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
+ $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
+ if (!empty($_SERVER['REQUEST_URI'])) {
+ $_SERVER['REQUEST_URI'] = stripslashes($_SERVER['REQUEST_URI']);
}
-
-/// neutralise nasty chars in PHP_SELF
- if (isset($_SERVER['PHP_SELF'])) {
- $phppos = strpos($_SERVER['PHP_SELF'], '.php');
- if ($phppos !== false) {
- $_SERVER['PHP_SELF'] = substr($_SERVER['PHP_SELF'], 0, $phppos+4);
- }
- unset($phppos);
+ if (!empty($_SERVER['QUERY_STRING'])) {
+ $_SERVER['QUERY_STRING'] = stripslashes($_SERVER['QUERY_STRING']);
+ }
+ if (!empty($_SERVER['HTTP_REFERER'])) {
+ $_SERVER['HTTP_REFERER'] = stripslashes($_SERVER['HTTP_REFERER']);
}
+ if (!empty($_SERVER['PATH_INFO'])) {
+ $_SERVER['PATH_INFO'] = stripslashes($_SERVER['PATH_INFO']);
+ }
+ if (!empty($_SERVER['PHP_SELF'])) {
+ $_SERVER['PHP_SELF'] = stripslashes($_SERVER['PHP_SELF']);
+ }
+ if (!empty($_SERVER['PATH_TRANSLATED'])) {
+ $_SERVER['PATH_TRANSLATED'] = stripslashes($_SERVER['PATH_TRANSLATED']);
+ }
+}
-/// initialise ME's
- initialise_fullme();
-
-/// start session and prepare global $SESSION, $USER
- session_get_instance();
- $SESSION = &$_SESSION['SESSION'];
- $USER = &$_SESSION['USER'];
-
-/// Process theme change in the URL.
- if (!empty($CFG->allowthemechangeonurl) && ($urlthemename = optional_param('theme', '', PARAM_SAFEDIR)) && confirm_sesskey()) {
- try {
- theme_config::load($urlthemename); // Makes sure the theme can be loaded without errors.
- $SESSION->theme = $urlthemename;
- } catch (Exception $e) {
- debugging('Failed to set the theme from the URL.', DEBUG_DEVELOPER, $e->getTrace());
- }
+// neutralise nasty chars in PHP_SELF
+if (isset($_SERVER['PHP_SELF'])) {
+ $phppos = strpos($_SERVER['PHP_SELF'], '.php');
+ if ($phppos !== false) {
+ $_SERVER['PHP_SELF'] = substr($_SERVER['PHP_SELF'], 0, $phppos+4);
}
- unset($urlthemename);
+ unset($phppos);
+}
+
+// initialise ME's
+initialise_fullme();
+
+// start session and prepare global $SESSION, $USER
+session_get_instance();
+$SESSION = &$_SESSION['SESSION'];
+$USER = &$_SESSION['USER'];
-/// Ensure a valid theme is set.
- if (!isset($CFG->theme)) {
- $CFG->theme = 'standardwhite';
+// Process theme change in the URL.
+if (!empty($CFG->allowthemechangeonurl) && ($urlthemename = optional_param('theme', '', PARAM_SAFEDIR)) && confirm_sesskey()) {
+ try {
+ theme_config::load($urlthemename); // Makes sure the theme can be loaded without errors.
+ $SESSION->theme = $urlthemename;
+ } catch (Exception $e) {
+ debugging('Failed to set the theme from the URL.', DEBUG_DEVELOPER, $e->getTrace());
}
+}
+unset($urlthemename);
-/// 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.
- if (($lang = optional_param('lang', '', PARAM_SAFEDIR))) {
- if (file_exists($CFG->dataroot .'/lang/'. $lang) or
- file_exists($CFG->dirroot .'/lang/'. $lang)) {
- $SESSION->lang = $lang;
- } else if (file_exists($CFG->dataroot.'/lang/'.$lang.'_utf8') or
- file_exists($CFG->dirroot .'/lang/'.$lang.'_utf8')) {
- $SESSION->lang = $lang.'_utf8';
- }
+// Ensure a valid theme is set.
+if (!isset($CFG->theme)) {
+ $CFG->theme = 'standardwhite';
+}
+
+// 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.
+if (($lang = optional_param('lang', '', PARAM_SAFEDIR))) {
+ if (file_exists($CFG->dataroot .'/lang/'. $lang) or
+ file_exists($CFG->dirroot .'/lang/'. $lang)) {
+ $SESSION->lang = $lang;
+ } else if (file_exists($CFG->dataroot.'/lang/'.$lang.'_utf8') or
+ file_exists($CFG->dirroot .'/lang/'.$lang.'_utf8')) {
+ $SESSION->lang = $lang.'_utf8';
}
- unset($lang);
+}
+unset($lang);
- setup_lang_from_browser();
+setup_lang_from_browser();
- if (empty($CFG->lang)) {
- if (empty($SESSION->lang)) {
- $CFG->lang = 'en_utf8';
- } else {
- $CFG->lang = $SESSION->lang;
- }
+if (empty($CFG->lang)) {
+ if (empty($SESSION->lang)) {
+ $CFG->lang = 'en_utf8';
+ } else {
+ $CFG->lang = $SESSION->lang;
}
+}
- // We used to call moodle_setlocale() and theme_setup() here, even though they
- // would be called again from require_login or $PAGE->set_course. As an experiment
- // I am going to try removing those calls. With luck it will help us find and
- // fix a few bugs where scripts do not initialise thigns properly, wihtout causing
- // too much grief.
-
- if (!empty($CFG->debugvalidators) and !empty($CFG->guestloginbutton)) {
- if ($CFG->theme == 'standard' or $CFG->theme == 'standardwhite') { // Temporary measure to help with XHTML validation
- if (isset($_SERVER['HTTP_USER_AGENT']) and empty($USER->id)) { // Allow W3CValidator in as user called w3cvalidator (or guest)
- if ((strpos($_SERVER['HTTP_USER_AGENT'], 'W3C_Validator') !== false) or
- (strpos($_SERVER['HTTP_USER_AGENT'], 'Cynthia') !== false )) {
- if ($user = get_complete_user_data("username", "w3cvalidator")) {
- $user->ignoresesskey = true;
- } else {
- $user = guest_user();
- }
- session_set_user($user);
+// We used to call moodle_setlocale() and theme_setup() here, even though they
+// would be called again from require_login or $PAGE->set_course. As an experiment
+// I am going to try removing those calls. With luck it will help us find and
+// fix a few bugs where scripts do not initialise thigns properly, wihtout causing
+// too much grief.
+
+if (!empty($CFG->debugvalidators) and !empty($CFG->guestloginbutton)) {
+ if ($CFG->theme == 'standard' or $CFG->theme == 'standardwhite') { // Temporary measure to help with XHTML validation
+ if (isset($_SERVER['HTTP_USER_AGENT']) and empty($USER->id)) { // Allow W3CValidator in as user called w3cvalidator (or guest)
+ if ((strpos($_SERVER['HTTP_USER_AGENT'], 'W3C_Validator') !== false) or
+ (strpos($_SERVER['HTTP_USER_AGENT'], 'Cynthia') !== false )) {
+ if ($user = get_complete_user_data("username", "w3cvalidator")) {
+ $user->ignoresesskey = true;
+ } else {
+ $user = guest_user();
}
+ session_set_user($user);
}
}
}
+}
-/// Apache log intergration. In apache conf file one can use ${MOODULEUSER}n in
-/// LogFormat to get the current logged in username in moodle.
- if ($USER && function_exists('apache_note')
- && !empty($CFG->apacheloguser) && isset($USER->username)) {
- $apachelog_userid = $USER->id;
- $apachelog_username = clean_filename($USER->username);
- $apachelog_name = '';
- if (isset($USER->firstname)) {
- // We can assume both will be set
- // - even if to empty.
- $apachelog_name = clean_filename($USER->firstname . " " .
- $USER->lastname);
- }
- if (session_is_loggedinas()) {
- $realuser = session_get_realuser();
- $apachelog_username = clean_filename($realuser->username." as ".$apachelog_username);
- $apachelog_name = clean_filename($realuser->firstname." ".$realuser->lastname ." as ".$apachelog_name);
- $apachelog_userid = clean_filename($realuser->id." as ".$apachelog_userid);
- }
- switch ($CFG->apacheloguser) {
- case 3:
- $logname = $apachelog_username;
- break;
- case 2:
- $logname = $apachelog_name;
- break;
- case 1:
- default:
- $logname = $apachelog_userid;
- break;
- }
- apache_note('MOODLEUSER', $logname);
- }
+// Apache log intergration. In apache conf file one can use ${MOODULEUSER}n in
+// LogFormat to get the current logged in username in moodle.
+if ($USER && function_exists('apache_note')
+ && !empty($CFG->apacheloguser) && isset($USER->username)) {
+ $apachelog_userid = $USER->id;
+ $apachelog_username = clean_filename($USER->username);
+ $apachelog_name = '';
+ if (isset($USER->firstname)) {
+ // We can assume both will be set
+ // - even if to empty.
+ $apachelog_name = clean_filename($USER->firstname . " " .
+ $USER->lastname);
+ }
+ if (session_is_loggedinas()) {
+ $realuser = session_get_realuser();
+ $apachelog_username = clean_filename($realuser->username." as ".$apachelog_username);
+ $apachelog_name = clean_filename($realuser->firstname." ".$realuser->lastname ." as ".$apachelog_name);
+ $apachelog_userid = clean_filename($realuser->id." as ".$apachelog_userid);
+ }
+ switch ($CFG->apacheloguser) {
+ case 3:
+ $logname = $apachelog_username;
+ break;
+ case 2:
+ $logname = $apachelog_name;
+ break;
+ case 1:
+ default:
+ $logname = $apachelog_userid;
+ break;
+ }
+ apache_note('MOODLEUSER', $logname);
+}
-/// Adjust ALLOWED_TAGS
- adjust_allowed_tags();
+// Adjust ALLOWED_TAGS
+adjust_allowed_tags();
-/// Use a custom script replacement if one exists
- if (!empty($CFG->customscripts)) {
- if (($customscript = custom_script_path()) !== false) {
- require ($customscript);
- }
+// Use a custom script replacement if one exists
+if (!empty($CFG->customscripts)) {
+ if (($customscript = custom_script_path()) !== false) {
+ require ($customscript);
}
+}
- // in the first case, ip in allowed list will be performed first
- // for example, client IP is 192.168.1.1
- // 192.168 subnet is an entry in allowed list
- // 192.168.1.1 is banned in blocked list
- // This ip will be banned finally
- if (!empty($CFG->allowbeforeblock)) { // allowed list processed before blocked list?
- if (!empty($CFG->allowedip)) {
- if (!remoteip_in_list($CFG->allowedip)) {
- die(get_string('ipblocked', 'admin'));
- }
+// in the first case, ip in allowed list will be performed first
+// for example, client IP is 192.168.1.1
+// 192.168 subnet is an entry in allowed list
+// 192.168.1.1 is banned in blocked list
+// This ip will be banned finally
+if (!empty($CFG->allowbeforeblock)) { // allowed list processed before blocked list?
+ if (!empty($CFG->allowedip)) {
+ if (!remoteip_in_list($CFG->allowedip)) {
+ die(get_string('ipblocked', 'admin'));
}
- // need further check, client ip may a part of
- // allowed subnet, but a IP address are listed
- // in blocked list.
- if (!empty($CFG->blockedip)) {
- if (remoteip_in_list($CFG->blockedip)) {
- die(get_string('ipblocked', 'admin'));
- }
+ }
+ // need further check, client ip may a part of
+ // allowed subnet, but a IP address are listed
+ // in blocked list.
+ if (!empty($CFG->blockedip)) {
+ if (remoteip_in_list($CFG->blockedip)) {
+ die(get_string('ipblocked', 'admin'));
}
+ }
- } else {
- // in this case, IPs in blocked list will be performed first
- // for example, client IP is 192.168.1.1
- // 192.168 subnet is an entry in blocked list
- // 192.168.1.1 is allowed in allowed list
- // This ip will be allowed finally
- if (!empty($CFG->blockedip)) {
- if (remoteip_in_list($CFG->blockedip)) {
- // if the allowed ip list is not empty
- // IPs are not included in the allowed list will be
- // blocked too
- if (!empty($CFG->allowedip)) {
- if (!remoteip_in_list($CFG->allowedip)) {
- die(get_string('ipblocked', 'admin'));
- }
- } else {
+} else {
+ // in this case, IPs in blocked list will be performed first
+ // for example, client IP is 192.168.1.1
+ // 192.168 subnet is an entry in blocked list
+ // 192.168.1.1 is allowed in allowed list
+ // This ip will be allowed finally
+ if (!empty($CFG->blockedip)) {
+ if (remoteip_in_list($CFG->blockedip)) {
+ // if the allowed ip list is not empty
+ // IPs are not included in the allowed list will be
+ // blocked too
+ if (!empty($CFG->allowedip)) {
+ if (!remoteip_in_list($CFG->allowedip)) {
die(get_string('ipblocked', 'admin'));
}
- }
- }
- // if blocked list is null
- // allowed list should be tested
- if(!empty($CFG->allowedip)) {
- if (!remoteip_in_list($CFG->allowedip)) {
+ } else {
die(get_string('ipblocked', 'admin'));
}
}
-
+ }
+ // if blocked list is null
+ // allowed list should be tested
+ if(!empty($CFG->allowedip)) {
+ if (!remoteip_in_list($CFG->allowedip)) {
+ die(get_string('ipblocked', 'admin'));
+ }
}
-/// note: we can not block non utf-8 installations here, because empty mysql database
-/// might be converted to utf-8 in admin/index.php during installation
+}
+// note: we can not block non utf-8 installations here, because empty mysql database
+// might be converted to utf-8 in admin/index.php during installation