Moodle version: Difference between revisions

From MoodleDocs
(Managing a Moodle site template)
 
(17 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Managing a Moodle site}}[[Image:Moodle_Version_Notification_Page.JPG|thumb|Moodle version with (build number) and copyright]]The version of Moodle which your site is using can be found on the notifications page (''Site Administration > Notifications'').
{{Managing a Moodle site}}
==What version of Moodle am I using?==


For a list of all past Moodle versions, see [[:dev:Releases]].
The version of Moodle which your site is using can be found if you log in as an administrator and go to ''Site administration > Notifications''.
[[Image:moodleversion.png|center|thumb|Moodle version info]]
 
==Finding the version of Moodle if you are not an admin==
* For Moodle sites in English or German (only), if you are a regular teacher with no admin access, you might be able to find your Moodle version by clicking on "Moodle Docs for this page" at the bottom of any Moodle page when logged in. If your admin  has allowed this link to display, you should be taken to the documentation for your version of Moodle. Look at the number in the URL e.g. 27 or 32 which mean you are using Moodle 2.7 or 3.2 respectively.
 
==Finding the version of Moodle if your site is in a language other than English  or German==
* For Moodle sites in languages other than English, you can go to any course where you are a teacher. We will see one example for a Mexican Spanish site.
** Notice the URL in the browser window (blue rectangle in the image below).
 
[[File:Finding_your_Moodle_via_English_Docs_step_1_.png]]
 
**  Add '&lang=en' to the address (green rectangle in the image below).
 
[[File:Finding_your_Moodle_via_English_Docs_step_2_.png]]
* Your course will now have a 'Moodle Docs for this page' link (blue rectangle in the image above) that will lead you to the version of the English Moodle documentation that corresponds to your Moodle site version (green rectangle in the image below):
 
[[File:Finding your Moodle via English Docs step 3 .png]]


==Version.php file==
==Version.php file==
You can also view version information by opening ''moodle/version.php'' file in a text editor. Here is a typical ''version.php'':
Your exact Moodle version may be obtained by viewing the file ''moodle/version.php'' in a text editor. Here is a typical ''version.php'':
 


<pre>
<pre>
Line 27: Line 44:
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.


== Discovering Version programmatically ==
==See also==


The above variables are copied into the $CFG global object. If you are writing custom code for Moodle you can access $CFG->version and $CFG->release.
* [[:dev:Releases]]


==Hover version function discontinued==
[[Category:FAQ]]
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]]
[[es:Versión de Moodle]]

Latest revision as of 14:59, 1 August 2017

What version of Moodle am I using?

The version of Moodle which your site is using can be found if you log in as an administrator and go to Site administration > Notifications.

Moodle version info

Finding the version of Moodle if you are not an admin

  • For Moodle sites in English or German (only), if you are a regular teacher with no admin access, you might be able to find your Moodle version by clicking on "Moodle Docs for this page" at the bottom of any Moodle page when logged in. If your admin has allowed this link to display, you should be taken to the documentation for your version of Moodle. Look at the number in the URL e.g. 27 or 32 which mean you are using Moodle 2.7 or 3.2 respectively.

Finding the version of Moodle if your site is in a language other than English or German

  • For Moodle sites in languages other than English, you can go to any course where you are a teacher. We will see one example for a Mexican Spanish site.
    • Notice the URL in the browser window (blue rectangle in the image below).

Finding your Moodle via English Docs step 1 .png

    • Add '&lang=en' to the address (green rectangle in the image below).

Finding your Moodle via English Docs step 2 .png

  • Your course will now have a 'Moodle Docs for this page' link (blue rectangle in the image above) that will lead you to the version of the English Moodle documentation that corresponds to your Moodle site version (green rectangle in the image below):

Finding your Moodle via English Docs step 3 .png

Version.php file

Your exact Moodle version may be obtained by viewing the file moodle/version.php in a text editor. Here is a typical version.php:

<?php

// MOODLE 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 = 2007101580.00; // YYYYMMDD      = date of the 1.9 branch (don't change)
                              //         X     = release number 1.9.[0,1,2,3,4,5...]
                              //          Y.YY = micro-increments between releases

    $release = '1.9.8+ (Build: 20100512)';     // Human-friendly version name

?>

Note: You cannot view the contents of version.php in your browser - you must use a text editor.

See also