shortname.': '.$strhealthcenter, $site->fullname, ''.$stradmin.' -> '.$strhealthcenter); echo << div#healthnoproblemsfound { width: 60%; margin: auto; padding: 1em; border: 1px black solid; -moz-border-radius: 6px; } dl.healthissues { width: 60%; margin: auto; } dl.critical dt, dl.critical dd { background-color: #a71501; } dl.significant dt, dl.significant dd { background-color: #d36707; } dl.annoyance dt, dl.annoyance dd { background-color: #dba707; } dl.notice dt, dl.notice dd { background-color: #e5db36; } dt.solution, dd.solution, div#healthnoproblemsfound { background-color: #5BB83E !important; } dl.healthissues dt, dl.healthissues dd { margin: 0px; padding: 1em; border: 1px black solid; } dl.healthissues dt { font-weight: bold; border-bottom: none; padding-bottom: 0.5em; } dl.healthissues dd { border-top: none; padding-top: 0.5em; margin-bottom: 10px; } dl.healthissues dd form { margin-top: 0.5em; text-align: right; } form#healthformreturn { text-align: center; margin: 2em; } dd.solution p { padding: 0px; margin: 1em 0px; } dd.solution li { margin-top: 1em; } STYLES; $solution = optional_param('solution', NULL); if(!empty($solution) && class_exists($solution)) { health_print_solution($solution); } else { health_find_problems(); } print_footer(); function health_find_problems() { print_heading(get_string('healthcenter')); $issues = array( SEVERITY_CRITICAL => array(), SEVERITY_SIGNIFICANT => array(), SEVERITY_ANNOYANCE => array(), SEVERITY_NOTICE => array(), ); $problems = 0; for($i = 1; $i < 1000000; ++$i) { $classname = sprintf('problem_%06d', $i); if(!class_exists($classname)) { break; } $problem = new $classname; if($problem->exists()) { $severity = $problem->severity(); $issues[$severity][$classname] = array( 'severity' => $severity, 'description' => $problem->description(), 'title' => $problem->title() ); ++$problems; } unset($problem); } if($problems == 0) { echo '
'; echo get_string('healthnoproblemsfound'); echo '
'; } else { print_heading(get_string('healthproblemsdetected')); $severities = array(SEVERITY_CRITICAL, SEVERITY_SIGNIFICANT, SEVERITY_ANNOYANCE, SEVERITY_NOTICE); foreach($severities as $severity) { if(!empty($issues[$severity])) { echo '
'; foreach($issues[$severity] as $classname => $data) { echo '
'.$data['title'].'
'; echo '
'.$data['description']; echo '
'; echo ''; echo '
'; } echo '
'; } } } } function health_print_solution($classname) { $problem = new $classname; $data = array( 'title' => $problem->title(), 'severity' => $problem->severity(), 'description' => $problem->description(), 'solution' => $problem->solution() ); print_heading(get_string('healthcenter')); print_heading(get_string('healthproblemsolution')); echo '
'; echo '
'.$data['title'].'
'; echo '
'.$data['description'].'
'; echo '
'.get_string('healthsolution').'
'; echo '
'.$data['solution'].'
'; echo '
'; echo ''; echo '
'; } class problem_base { function exists() { return false; } function title() { return '???'; } function severity() { return SEVERITY_NOTICE; } function description() { return ''; } function solution() { return ''; } } class problem_000001 extends problem_base { function title() { return 'Invalid value for $CFG->dirroot'; } function exists() { global $CFG; $dirroot = dirname(realpath('../index.php')); if (!empty($dirroot) && $dirroot != $CFG->dirroot) { return true; } return false; } function severity() { return SEVERITY_CRITICAL; } function description() { global $CFG; return 'Your config.php file contains the setting $CFG->dirroot = "'.$CFG->dirroot.'", which is incorrect. Unless you correct this problem, Moodle will not function correctly, if at all.'; } function solution() { global $CFG; $dirroot = dirname(realpath('../index.php')); return 'You need to edit your config.php file. Find the line which reads
$CFG->dirroot = \''.$CFG->dirroot.'\';
and change it to read
$CFG->dirroot = \''.$dirroot.'\'
'; } } class problem_000002 extends problem_base { function title() { return 'Extra characters at the end of config.php'; } function exists() { // [pj] When the requirements are raised to PHP 4.3.0 this will be file_get_contents() if($fp = @fopen('../config.php', 'r')) { $contents = fread($fp, 16384); // 16K should be enough $ending = substr($contents, -2); unset($contents); if($ending == '?>') { return false; } fclose($fp); } return true; } function severity() { return SEVERITY_SIGNIFICANT; } function description() { return 'Your Moodle configuration file, config.php, contains some characters after the closing PHP tag (?>). This could cause Moodle to exhibit several kinds of problems and should be fixed.'; } function solution() { global $CFG; return 'You need to edit '.$CFG->dirroot.'/config.php and remove all characters (including spaces and returns) after the ending ?> tag. These two characters should be the very last in that file.'; } } class problem_000003 extends problem_base { function title() { return '$CFG->dataroot does not exist or does not have write permissions'; } function exists() { global $CFG; if(!is_dir($CFG->dataroot) || !is_writable($CFG->dataroot)) { return true; } return false; } function severity() { return SEVERITY_SIGNIFICANT; } function description() { global $CFG; return 'Your config.php says that your "data root" directory is '.$CFG->dataroot.'. However, this directory either does not exist or cannot be written to by Moodle. This means that a variety of problems will be present, such as users not being able to log in and not being able to upload any files. It is imperative that you address this problem for Moodle to work correctly.'; } function solution() { global $CFG; return 'First of all, make sure that the directory '.$CFG->dataroot.' exists. If the directory does exist, then you must make sure that Moodle is able to write to it. Contact your web server administrator and request that he gives write permissions for that directory to the user that the web server process is running as.'; } } class problem_000004 extends problem_base { function title() { return 'cron.php is not set up to run automatically'; } function exists() { global $CFG; $lastcron = get_field_sql('SELECT max(lastcron) FROM '.$CFG->prefix.'modules'); return (time() - $lastcron > 3600 * 24); } function severity() { return SEVERITY_SIGNIFICANT; } function description() { return 'The cron.php mainenance script has not been run in the past 24 hours. This probably means that your server is not configured to automatically run this script in regular time intervals. If this is the case, then Moodle will mostly work as it should but some operations (notably sending email to users) will not be carried out at all.'; } function solution() { global $CFG; return 'For detailed instructions on how to enable cron, see this section of the installation manual.'; } } class problem_000005 extends problem_base { function title() { return 'PHP: session.auto_start is enabled'; } function exists() { return ini_get_bool('session.auto_start'); } function severity() { return SEVERITY_CRITICAL; } function description() { return 'Your PHP configuration includes an enabled setting, session.auto_start, that must be disabled in order for Moodle to work correctly. Notable symptoms arising from this misconfiguration include fatal errors and/or blank pages when trying to log in.'; } function solution() { global $CFG; return '

There are two ways you can solve this problem:

  1. If you have access to your main php.ini file, then find the line that looks like this:
    session.auto_start = 1
    and change it to
    session.auto_start = 0
    and then restart your web server. Be warned that this, as any other PHP setting change, might affect other web applications running on the server.
  2. Finally, you may be able to change this setting just for your site by creating or editing the file '.$CFG->dirroot.'/.htaccess to contain this line:
    php_value session.auto_start "0"
'; } } class problem_000006 extends problem_base { function title() { return 'PHP: magic_quotes_runtime is enabled'; } function exists() { return (ini_get_bool('magic_quotes_runtime')); } function severity() { return SEVERITY_SIGNIFICANT; } function description() { return 'Your PHP configuration includes an enabled setting, magic_quotes_runtime, that must be disabled in order for Moodle to work correctly. Notable symptoms arising from this misconfiguration include strange display errors whenever a text field that includes single or double quotes is processed.'; } function solution() { global $CFG; return '

There are two ways you can solve this problem:

  1. If you have access to your main php.ini file, then find the line that looks like this:
    magic_quotes_runtime = On
    and change it to
    magic_quotes_runtime = Off
    and then restart your web server. Be warned that this, as any other PHP setting change, might affect other web applications running on the server.
  2. Finally, you may be able to change this setting just for your site by creating or editing the file '.$CFG->dirroot.'/.htaccess to contain this line:
    php_value magic_quotes_runtime "Off"
'; } } class problem_000007 extends problem_base { function title() { return 'PHP: file_uploads is disabled'; } function exists() { return !ini_get_bool('file_uploads'); } function severity() { return SEVERITY_SIGNIFICANT; } function description() { return 'Your PHP configuration includes a disabled setting, file_uploads, that must be enabled to let Moodle offer its full functionality. Until this setting is enabled, it will not be possible to upload any files into Moodle. This includes, for example, course content and user pictures.'; } function solution() { global $CFG; return '

There are two ways you can solve this problem:

  1. If you have access to your main php.ini file, then find the line that looks like this:
    file_uploads = Off
    and change it to
    file_uploads = On
    and then restart your web server. Be warned that this, as any other PHP setting change, might affect other web applications running on the server.
  2. Finally, you may be able to change this setting just for your site by creating or editing the file '.$CFG->dirroot.'/.htaccess to contain this line:
    php_value file_uploads "On"
'; } } class problem_000008 extends problem_base { function title() { return 'PHP: memory_limit cannot be controlled by Moodle'; } function exists() { $memlimit = @ini_get('memory_limit'); if(empty($memlimit)) { // PHP not compiled with memory limits, this means that it's // probably limited to 8M so we have a problem... return true; } // Otherwise, raise_memory_limit in setup.php will do the trick return false; } function severity() { return SEVERITY_ANNOYANCE; } function description() { return 'The settings for PHP on your server do not allow a script to request more memory during its execution. This means that most likely there is a hard limit of 8MB for each script. It is possible that certain operations within Moodle will require more than this amount in order to complete successfully, especially if there are lots of data to be processed. Therefore, it is recommended that you contact your server administrator to address this issue.'; } function solution() { global $CFG; return 'We need a good solution here. Enabling memory limit control means recompiling PHP... maybe this should be SEVERITY_NOTICE instead of SEVERITY_ANNOYANCE?'; } } class problem_000009 extends problem_base { function title() { return 'SQL: using account without password'; } function exists() { global $CFG; return empty($CFG->dbpass); } function severity() { return SEVERITY_CRITICAL; } function description() { global $CFG; return 'The user account your are connecting to the database server with is set up without a password. This is a very big security risk and is only somewhat lessened if your database is configured to not accept connections from any hosts other than the server Moodle is running on. Unless you use a strong password to connect to the database, you risk unauthorized access to and manipulation of your data.'.($CFG->dbuser != 'root'?'':' This is especially alarming because such access to the database would be as the superuser (root)!'); } function solution() { global $CFG; return 'You should change the password of the user '.$CFG->dbuser.' both in your database and in your Moodle config.php immediately!'.($CFG->dbuser != 'root'?'':' It would also be a good idea to change the user account from root to something else, because this would lessen the impact in the event that your database is compromised anyway.'); } } class problem_000010 extends problem_base { function title() { return 'Uploaded files: slasharguments disabled or not working'; } function exists() { if (!$this->is_enabled()) { return true; } if ($this->status() < 1) { return true; } return false; } function severity() { if ($this->is_enabled() and $this->status() == 0) { return SEVERITY_SIGNIFICANT; } else { return SEVERITY_ANNOYANCE; } } function description() { global $CFG; $desc = 'Slasharguments are needed for relative linking in uploaded resources:'; return $desc; } function solution() { global $CFG; $enabled = $this->is_enabled(); $status = $this->status(); $solution = ''; if ($enabled and ($status == 0)) { $solution .= 'Slasharguments are enabled, but the test failed. Please disable slasharguments in Moodle configuration or fix the server configuration.
'; } else if ((!$enabled) and ($status == 0)) { $solution .= 'Slasharguments are disabled and the test failed. You may try to fix the server configuration.
'; } else if ($enabled and ($status == -1)) { $solution .= 'Slasharguments are enabled, automatic testing not possible.
'; } else if ((!$enabled) and ($status == -1)) { $solution .= 'Slasharguments are disabled, automatic testing not possible.
'; } else if ((!$enabled) and ($status > 0)) { $solution .= 'Slasharguments are disabled though the iternal test is OK. You should enable slasharguments in Moodle configuration.'; } else if ($enabled and ($status > 0)) { $solution .= 'Congratulations - everything seems OK now :-D'; } if ($status < 1) { $solution .= '

IIS:

'; $solution .= '

Apache 1:

'; $solution .= '

Apache 2:

'; } return $solution; } function is_enabled() { global $CFG; return !empty($CFG->slasharguments); } function status() { global $CFG; $handle = @fopen($CFG->wwwroot.'/file.php?file=/testslasharguments', "r"); $contents = trim(@fread($handle, 7)); @fclose($handle); if ($contents != 'test -1') { return -1; } $handle = @fopen($CFG->wwwroot.'/file.php/testslasharguments', "r"); $contents = trim(@fread($handle, 6)); @fclose($handle); switch ($contents) { case 'test 1': return 1; case 'test 2': return 2; default: return 0; } } } class problem_000011 extends problem_base { function title() { return 'Session errors detected'; } function exists() { global $CFG; return isset($CFG->session_error_counter); } function severity() { return SEVERITY_ANNOYANCE; } function description() { global $CFG; if (isset($CFG->session_error_counter)) { return 'Session problems were detected. Total count: '.$CFG->session_error_counter; } else { return 'No session errors detected.'; } } function solution() { global $CFG; if (isset($_GET['resetsesserrorcounter'])) { if (get_field('config', 'name', 'name', 'session_error_counter')) { delete_records('config', 'name', 'session_error_counter'); } return 'Error counter was cleared.'; } else { return '

Session errors can be caused by:

Reset counter.

'; } } } class problem_00000x extends problem_base { function title() { return ''; } function exists() { return false; } function severity() { return SEVERITY_SIGNIFICANT; } function description() { return ''; } function solution() { global $CFG; return ''; } } /* TODO: session.save_path -- it doesn't really matter because we are already IN a session, right? */ ?>