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

Maintenance mode: Difference between revisions

From MoodleDocs
Line 23: Line 23:


==CLI maintenance mode==
==CLI maintenance mode==
{{Moodle 2.0}}In Moodle 2.0 there is a new ''CLI Maintenance mode'', admins can enable this mode by adding <code>$CFG->dataroot/climaintenance.html</code>. The difference from the standard mode is that all web access is prevent, all maintenance and upgrades have to be carried out via the CLI interface only.
{{Moodle 2.0}}In Moodle 2.0 there is a new ''CLI maintenance mode'', admins can enable this mode by adding <code>$CFG->dataroot/climaintenance.html</code>. The difference from the standard mode is that all web access is prevent, all maintenance and upgrades have to be carried out via the CLI interface only.


==See also==
==See also==

Revision as of 13:38, 27 March 2011

Location: Administration > Server > Maintenance mode


Maintenance mode is for preventing any users other than administrators from using the site while maintenance is taking 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.

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

To put your site in maintenance mode:

  1. Access Administration > Server > Maintenance mode.
  2. Click the Enable button.

If for some reason the webinterface is not available you can also put the Moodle installation in maintenance mode by creating a file called maintenance.html in the folder called 1 (i.e. numeric 'one') in your moodle data folder. Any text in that file will be displayed to users trying to access anything other than the frontpage.


When you go into Maintenance mode and create this file you will need to test the Maintenance mode to make sure that you can come out of Maintenance mode and a non admin user can login. If they can't you may have to delete the maintenance.html for non admin users to be able to login. Be sure it works before you are stuck in Maintenance mode and non admin users are unable to login past the front page.

Template:Moodle 1.9In Moodle 1.9.3 onwards, 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

Template:Moodle 2.0In Moodle 2.0 there is a new CLI maintenance mode, admins can enable this mode by adding $CFG->dataroot/climaintenance.html. The difference from the standard mode is that all web access is prevent, all maintenance and upgrades have to be carried out via the CLI interface only.

See also