Moodle version: Difference between revisions
From MoodleDocs
Helen Foster (talk | contribs) m (re-wording, formatting) |
Helen Foster (talk | contribs) (page update) |
||
Line 1: | Line 1: | ||
[[Image:Moodle_Version_Notification_Page.JPG|thumb|Moodle version with (build number) and copyright]] | |||
[[Image:Moodle_Version_Notification_Page.JPG| | |||
The version of Moodle which your site is using can be found on the notifications page (''Site Administration > Notifications''). | |||
You can also view version information by opening ''moodle/version.php'' file in a text editor. Here is a typical ''version.php'': | |||
<pre> | <pre> | ||
Line 32: | Line 24: | ||
Note: You cannot view the contents of version.php in your browser - you must use a text editor. | Note: You cannot view the contents of version.php in your browser - you must use a text editor. | ||
In earlier versions of Moodle, the version number was sometimes available (depending upon the theme used) by hovering over the Moodle logo on the front page. This functionality was removed in Moodle 1.9.7 onwards for security reasons. | |||
[[Category:FAQ]] | [[Category:FAQ]] | ||
[[Category:Administrator]] | [[Category:Administrator]] |
Revision as of 09:15, 26 November 2009
The version of Moodle which your site is using can be found on the notifications page (Site Administration > Notifications).
You can also view version information by opening moodle/version.php file in a text editor. Here is a typical version.php:
<?php // MOODLE 1.6 VERSION INFORMATION // This file defines the current version of the core Moodle code being used. // This is compared against the values stored in the database to determine // whether upgrades should be performed (see lib/db/*.php) $version = 2006050521; // YYYYMMDD = date of the 1.6 branch (don't change) // X = release number 1.6.[0,1,2,3...] // Y = micro-increments between releases $release = '1.6.2+'; // Human-friendly version name ?>
Note: You cannot view the contents of version.php in your browser - you must use a text editor.
In earlier versions of Moodle, the version number was sometimes available (depending upon the theme used) by hovering over the Moodle logo on the front page. This functionality was removed in Moodle 1.9.7 onwards for security reasons.