Note: You are currently viewing documentation for Moodle 2.2. Up-to-date documentation for the latest stable version is available here: Maintenance mode.

Maintenance mode: Difference between revisions

From MoodleDocs
No edit summary
 
(29 intermediate revisions by 14 users not shown)
Line 1: Line 1:
[[Category:Administrator]]
{{Server settings}}
Maintenance mode is for preventing any users other than administrators from using the site while maintenance is taking place, though ''it's not designed to prevent user access during version upgrades''.


The idea of maintenance mode is to prevent any users other than admin to use the system (Moodle) while maintenance process takes place.
When users attempt to access a course when your site is in maintenance mode, they obtain a message informing them that the site is in maintenance mode. If you wish, you can create a customized maintenance mode message, perhaps stating when the site will be available again or giving the reason for doing maintenance.


So basically when students/guests/teachers try access a course in maintenance mode, they will get a notification saying the course is in maintenance mode. You can also add customized message from the Admin>>Maintenance page (probably mentioning when the site will go back online or the reason for doing maintenance). While, Admin can access all the normal functionalities and do the necessary maintenance task.
Note: The front page of your site will appear as normal when your site is in maintenance mode. Users will only see the maintenance mode message when they attempt to access a course.
 
==Setting maintenance mode==
 
An administrator can put the site into maintenance mode in ''Settings > Site administration > Server > Maintenance mode''. An optional maintenance message may be added.
 
When a site is in maintenance mode, the link "In Maintenance Mode" is displayed near the top right of each page (except the front page) for admins.
 
==CLI maintenance mode==
 
Admins can enable CLI maintenance mode by adding file from the command line <code>$CFG->dataroot/climaintenance.html</code>. The difference from the standard maintenance mode is that all web access is prevented, CLI scripts continue to work. This CLI maintenance mode is used often during CLI version upgrades.
 
See also the section on maintenance mode in [[Administration via command line]].
 
==See also==
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=46451 Maintenance mode?] forum discussion
 
[[eu:Mantenu-modua]]
[[fr:Mode de maintenance]]
[[ja:メンテナンスモード]]
[[de:Wartungsmodus]]

Latest revision as of 16:19, 10 July 2012

Maintenance mode is for preventing any users other than administrators from using the site while maintenance is taking place, though it's not designed to prevent user access during version upgrades.

When users attempt to access a course when your site is in maintenance mode, they obtain a message informing them that the site is in maintenance mode. If you wish, you can create a customized maintenance mode message, perhaps stating when the site will be available again or giving the reason for doing maintenance.

Note: The front page of your site will appear as normal when your site is in maintenance mode. Users will only see the maintenance mode message when they attempt to access a course.

Setting maintenance mode

An administrator can put the site into maintenance mode in Settings > Site administration > Server > Maintenance mode. An optional maintenance message may be added.

When a site is in maintenance mode, the link "In Maintenance Mode" is displayed near the top right of each page (except the front page) for admins.

CLI maintenance mode

Admins can enable CLI maintenance mode by adding file from the command line $CFG->dataroot/climaintenance.html. The difference from the standard maintenance mode is that all web access is prevented, CLI scripts continue to work. This CLI maintenance mode is used often during CLI version upgrades.

See also the section on maintenance mode in Administration via command line.

See also