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

Upgrading: Difference between revisions

From MoodleDocs
No edit summary
(→‎Possible issues that may affect you in Moodle 2.3: MySQL dmlwriteexception error when using calculated questions in a quiz (MDL-29332))
 
(82 intermediate revisions by 27 users not shown)
Line 1: Line 1:
Система Moodle позволяет обновление от версии к версии. Пожалуйста, для более подробного ознакомления с обновляемой версией перейдите по ссылкам Upgrading to Moodle 1.6, Upgrading to Moodle 1.8 или Upgrading to Moodle 1.9.
{{Installing Moodle}}
''This page explains in detail how to upgrade Moodle. For a summary of the process, see [[Upgrade overview]].''


Изменения, внесенные в исходный код, такие как установка вспомогательного модуля (не стандартного модуля) или редактирование на сайте php-файла могут не обновиться. Сюда же включаются модификации стандартных тем, которые будут переписаны в процессе обновления.
==Check the requirements==


Для использования cpanel можно воспользоваться ссылкой [http://ic.eflclasses.org/tutorials/howtoupgrademoodlewithcpanel.swf this tutorial]. Несмотря на некоторые неровности по краям и небольшую устарелость, идея должна быть ясна.  
Check that your server meets all requirements for 2.3 in ''Settings > Site administration > Server > [[Environment]]''.


__TOC__
Note: You can only upgrade to Moodle 2.3 from Moodle 2.2 or later. If upgrading from earlier versions, you must [https://docs.moodle.org/22/en/Upgrading_to_Moodle_2.2 upgrade to 2.2] as a first step.


Обновляйте версию Moodle по следующим шагам: 
==Checking database schema - old sites==


==Проверка системных требований==
If your Moodle site has been upgraded through many prior versions it is possible that there will be some problems with the database schema (compared to a fresh 2.3 installation). This may cause the upgrade to fail. If your site started life prior to Moodle 2.0 it is a very good idea to check and correct the database schema before upgrading. See [[Verify Database Schema]]. You should also run the database integrity checks in the XMLDB editor.


Ознакомтесь с инструкцией по установке и документацией на новую версию. Проверьте системные требования для версии, которую вы хотите обновить на ''Administration > Server > [[Environment]]''.
==Check for plugin updates==


== Резервирование важных данных==
Check in the [http://moodle.org/plugins Moodle Plugins directory] whether there is a 2.3 version available for any contributed/custom plugins (including themes) that you have previously installed on your site. If so, download the plugin code and copy it to the appropriate location in your Moodle code (see [[Installing plugins]]).


Всегда полезно, хотя и не строго обязательно, делать резервную копию любой системы перед ее серьезным обновлением на случай, если придется вернуться к старой версии. Вообще, очень практично настроить Ваш сервер для ежедневного обновления версии Moodle и просто пропустить этот шаг.
The upgrade of the plugin will then happen as part of the Moodle upgrade process.


Рассмотрим три области, нуждающиеся в резервировании:
If an out-of-date plugin causes your upgrade to fail, you can usually delete the plugin code rather than uninstalling it from within Moodle so that the data associated with it is not deleted.


=== 1. Собственно программная директория Moodle===
==Before you upgrade your site for real==


Сделайте отдельную копию этих файлов перед обновлением, что позволит восстановить файл config.php и любые модули, которые были добавлены как темы, языки и т. д.  
'''We advise that you test the upgrade first on a COPY of your production site, to make sure it works as you expect.'''


=== 2. Ваша папка данных  ===
== Backup important data ==


Именно сдесь находятся загружаемые данные (такие как ресурсы курса и студенческие задания), так что очень важно иметь резервную копию этих файлов в любом случае. Иногда при обновлении некоторые папки в Вашей директории данных могут исчезнуть или получить другие имена.
There are three areas that should be backed up before any upgrade:
#Moodle software (For example, everything in server/htdocs/moodle)
#Moodle uploaded files (For example, server/moodledata)
#Moodle database (For example, the SQL or Postgres database)


=== 3. Ваша база данных ===
See [[Site backup]] for more specific information.


Большинство обновлений Moodle изменяют таблицы баз данных, добавляя или изменяя поля. Существую разные способы резервирования для каждой базы данных. Один из способов резервирования базу данных MySQL состоит в "выгрузке" ее в один SQL-файл. Приведенный ниже пример иллюстрирует Unix команды для загрузки в файл базы данных под названием "moodle": 
==Put your Site into maintenance mode==
Before you begin upgrading your site, you should put it into [[Maintenance_mode | maintenance mode]] to stop any non-admin users from logging in.


mysqldump -u username -p -C -Q -e -a moodle > moodle-backup-2007-04-01.sql
== Install the new Moodle software ==
(Ключ "-a" не желателен и должен быть заменен на "--create-options")


Замените учетную запись в базе данных на имя пользователя. Флаг -p указывает на пароль для пользователя под флагом -u.
=== Standard install package ===


Если хост базы данных отличается от хоста, на котором Вы хотите выполнить команду резервирования (обычно это web-сервер)нужно при выполнении дампа MySQL указать его с опцией -h:
# Move your old Moodle software program files to another location. ''Do NOT copy new files over the old files.''
# Unzip or unpack the upgrade file so that all new the Moodle software program files are in the location the old files used to be in on the server.  Moodle will adjust SQL and moodledata if it needs to in the upgrade.
# Copy your old [[Configuration file|config.php file]] back to the new Moodle directory.
# As mentioned above, if you had installed any custom plugins on your site you should add them to the new code. It is important to check that you get the correct version for your new version of Moodle. Be particularly careful that you do not overwrite any code in the new version of Moodle.


mysqldump -u username -p -h databasehost -C -Q -e -a moodle > moodle-backup-2007-04-01.sql
====Linux====
 
Вы также модете воспользоваться функцией экспорта "Export" в опции web-интерфейса Moodle "MySQL Admin" для выполнения этой же операции на любой платформе. В версии Moodle v1.9 и выше эта опция находится в меню '''Site Administration''' -> '''Server''' -> '''Database'''. Этот интерфейс можно также загрузить со страницы http://download.moodle.org/modules/integrations.php. Это компоновка PHPMyAdmin с интерфейсом администратора Moodle.
 
==== Замечания перед дампом SQL ====
 
* Пожалуйста, учтите, что для дампа SQL mysqldump существует множество опций. Необходимо проконсультироваться с Вашим системным администратором (если такой человек имеется) или другим специалистом чтобы выяснить, нет ли на сайте специальных флагов, которые нужно использовать для дампа SQL.
** Например, если Вы с собственной MySQL 5.2 переходите к системе, использующей MySQL 5.0 или 4.1, Вам обязательно нужно использовать флаг "--compat=mysql40". (Это не так уж нехарактерно для ситуаций, которые раскрывают природу ISP-хостинга в сравнении с локальной пользовательской установкой Moodle) 
* Несмотря на всю очевидность, нужно четко понимать: эти инструкции подходят только для дампа из MYSQL! Postgresql, Oracle и другие серверы баз данных имеют другие средства для дампа баз данных. 
* Для приведенного выше примера с командами импорта mysql, Вам нужно использовать флаг --no-create-db. Если Ваша база данных локально названа не так, как на сайте перемещения, отсутствие этого флага приведет к возникновению проблем.
 
== Установка нового программного обеспечения Moodle ==
 
=== Использование загружаемого архива ===
 
@Не ставте новую версию поверх старой если вы не уверены, что делаете правильно... некоторые старые файлы могут вызвать сбои в работе новой версии. Лучше всего переименовать текущую директорию Moodle, затем распаковать архив новой версии Moodle по старому адресу.
 
Linux
  mv moodle moodle.backup
  mv moodle moodle.backup
  tar xvzf moodle-1.1.tgz
  tar xvzf moodle-1.1.tgz


Затем скопируйте файл config.php, любые другие плагины как например пользовательские темы, и Ваш .htaccess файл, если Вы его создавали:
Next, copy across your config.php, any custom plugins, and your .htaccess file if you created one ('''check that custom plugins are the correct version for your new Moodle first'''):


  cp moodle.backup/config.php moodle
  cp moodle.backup/config.php moodle
  cp -pr moodle.backup/theme/mytheme moodle/theme/mytheme
  cp -pr moodle.backup/theme/mytheme moodle/theme/mytheme
cp -pr moodle.backup/mod/mymod moodle/mod/mymod


И не забудьте
Don't forget to make moodle/config.php (and the rest of the source code) readable by your www server. Ideally the files should not be writeable by your server.
 
sudo chown www-data moodle/config.php
 
если нужно.
 
Где www-data - какой пользователь Apache стоит на Вашей системе. Это обычно 'apache' or 'www'.
Это можно выяснить с помощью 'ls -l' в Вашей директории /var/www/moodle (или там, где находится Ваш Moodle сайт), посмотрев "владельца" и группу.
 
Так что можно увидеть что-то вроде
 
ls -l
 
...lots of lines...
 
-rw-r--r--  1 apache system    784 Jun 28  2007 config.php
 
...lots more lines...
 
таким образом здесь "владельц" - apache, а группа системная.
 
Для того чтобы повторить это на новой системе можно записать 'chown apache:system config.php'
 
или для всей группы
 
chown apache:system ./*
 
и реккурентно
 
chown -R apache:system ./*
 
=== Используя CVS ===
 
Вы можете использовать CVS для обновления или установки новой версии Moodle. Для этого в первую очередь выполните CVS проверку в Вашей (пустой) корневой директории Moodle.
 
Вы можете воспользоваться любой из наших [[CVS_for_Administrators#CVS_Servers|CVS Mirror servers]]. Просто замените '''SERVER.cvs.moodle.org''' в указанных ниже командах на имя зеркального сервера, котолрый вы выбрали!.
 
'''Для серверов Linux'''


Для выполнения CVS проверки Moodle, прежде всего нужно зарегестрироваться на CVS сервере Moodle.
If you use cron, take care that cron.php is executeable and uses the correct php command:
chmod 740 admin/cli/cron.php (some configurations need chmod 750 or chmod 755)
copy the first line from cron.php (if it looks like '#!/usr/local/bin/php' or '#!/usr/local/bin/php5.3', no need to copy '<?php')


  <nowiki>cvs -d:pserver:anonymous@SERVER.cvs.moodle.org:/cvsroot/moodle login</nowiki>
if necessary.
  Без пароля для анонимности, так что просто кликните на Enter.


Перейдите к директории, где Вы собираетесь держать корневую папку Moodle
=== Using Git ===


  <nowiki>cvs -z3 -d:pserver:anonymous@SERVER.cvs.moodle.org:/cvsroot/moodle co -r MOODLE_18_STABLE moodle</nowiki>
You can use Git for updating or upgrading your Moodle. New sites are recommended to use this rather than CVS since all Moodle development has moved to Git. See [[Git for Administrators]] for details.
  (where MOODLE_18_STABLE is the desired version)


Для обновления просто перейдите в корневую папку Moodle и обновите файлы:
===Command line upgrade===


  cvs update -dP
On Linux servers, Moodle 2.3 supports running the [[CLI|upgrade from the command line]], rather than through a web browser. This is likely to be more reliable, particularly for large sites.
Для обновления на новую версию наберите следующую команду и замените 18 на номер самой новой версии
  cvs -Q update -dP -r MOODLE_18_STABLE


Убедитесь, что Вы используете "d" параметр для создания в случае необходимости новых директорий, и "P" параметр для удаления пустых папок.
== Finishing the upgrade ==


'''Для серверов Windows'''
The last step is to trigger the upgrade processes within Moodle.


Для выполнения начальной проверки и обновления можно использовать Tortoise CVS.
To do this just go to ''Settings > Site administration > Notifications''.


Если Вы редактируете файлы Moodle, внимательно следите за сообщениями о возможных сбоях. Все Ваши пользовательские темы и нестандартные плагины останутся нетронутыми.
Moodle will automatically detect the new version and perform all the SQL database or file system upgrades that are necessary. If there is anything it can't do itself (very rare) then you will see messages telling you what you need to do.


Не забудьте зайти на страницу администратора после завершения CVS обновления.
Assuming all goes well (no error messages) then you can start using your new version of Moodle and enjoy the new features!


== Завершение обновления ==
==After upgrading==


Последний шаг - инициализация обновлений внутри Moodle.
The config.php file from your 2.2 installation should work fine but if you take a look at config-dist.php that came with Moodle 2.3 there are more/different options available (e.g. database drivers and settings). It's a good idea to map your old config.php settings to a new one based on the 2.3 config-dist.php.


Для этого зайдите на страницу администратора Ваших установок, например ''<nowiki>http://example.com/moodle/admin</nowiki>''
==Possible issues that may affect you in Moodle 2.3==


Не важно, зарегестрированы Вы как администратор или нет. Если Вы обновляете какую-то старую версию, Вы в любом случае не сможете зарегестрироваться до обновления.
=== Two assignment modules ===


Moodle автоматически определит новую версию и выполнит все необходимые обновления базы данных или файловой системы. Если какие-то операции система не сможет сделать самостоятельно (что случается крайне редко), Вы увидите соответствующие сообщения с указанием Ваших действий.
A new assignment module has been added in Moodle 2.3. The old assignment module is still available (renamed 'Assignments 2.2') and sites which have upgraded from previous versions will have both versions available.


Если все прошло хорошо (нет сообщений об ошибках), то можно начинать пользоваться новой версией Moodle и получать удовольствие от новых возможностей!
It is recommended that admins upgrade all existing assignments to use the new assignment module as soon as possible, as described in [[Upgrade tool|Assignment upgrade tool]], then disable the old assignment module, to avoid the confusion of having two assignment modules.


Имейте пожалуйста в виду, что если Вы используете крупномасштабный сайт Moodle (например, более 10 тысяч курсов и 40 тысяч пользователей), то нужно убедиться, перед тем как обновиться на Moodle 1.8.x, что Вы выполняете свое собственное профилирующее тестирование, так как для установки крупной пользовательской базы в версии 1.8.x имеется все еще всего несколько свободных тематик.
===Google registration required for Google Docs and Picasa plugins===


== Проверка обновления (необязательно) ==
Due to a change in Google's service, Moodle 2.3 has switched to a more secure and more user-friendly system for communicating with Google called 'OAuth 2.0'. As a result, any Google Docs and Picasa plugins (the Google Docs and Picasa repositories and the Google Docs and Picasa portfolios) used previously on the site will be disabled when the site is upgraded.


Если Вы хотите убедиться, что описание базы данных в обновленной базе совпадает с описанием новой, чистой установки (как должно быть), можно открыть [[Verify Database Schema]].
To re-enable these plugins, an administrator must register their site with Google, as described in [[Google OAuth 2.0 setup]], and obtain a client ID and secret. The client ID and secret can then be used to configure all Google Docs and Picasa plugins.


==Обновление нескольких версий==
===RTL theme fixes===


В общем случае, рекомендуется выполнять обновление последовательно от версии к версии Moodle, например 1.7 -> 1.8 -> 1.9. Исключение составляет обновление версии 1.5 на 1.6, когда рекомендуется пропустить версию 1.7, то есть обновлять 1.5 -> 1.6 -> 1.8 -> 1.9. (Главная причина этой рекомендации заключается в том, что установки по умолчанию, определяемые обновлением к верии 1.7, не идеальны в дальнейшем для версии 1.8.)
Moodle 2.3 includes many right-to-left (RTL) theme fixes (MDL-30337) and so sites using RTL languages, such as Arabic and Hebrew, are recommended to perform additional testing, particularly with any custom themes to ensure everything is working fine.


==Смотреть также==
===MySQL dmlwriteexception error when using calculated questions in a quiz===


*[[Installing Moodle]]
If you're using MySQL or SQL*Server and you have a problem with duplicated keys with the question_attempt_step_data table when using calculated questions in a quiz (from entering a formula which uses variables with the same characters in different cases), it is recommended that you upgrade to Moodle 3.0.x or higher ASAP. Alternatively, the problematic unique index can be dropped or the collation of the columns changed to be case-sensitive, however this is not considered a complete fix. See MDL-29332 for more information.
*[[Installation FAQ]]
*[[Upgrading to Moodle 1.6]]
*[[Upgrading to Moodle 1.8]]
*[[Upgrading to Moodle 1.9]]
*[[Upgrading to Moodle 2.0]]
*[[Environment]]
*Using Moodle [http://moodle.org/mod/forum/view.php?id=28 Installation problems] forum
*[http://otaru-jc.ac.jp/hagley/howtoupgrademoodlewithcpanel.swf How to upgrade Moodle with cpanel tutorial]


Using Moodle forum discussions:
==See also==
*[http://moodle.org/mod/forum/discuss.php?d=26731&parent=125858 Using cvs]
*[http://moodle.org/mod/forum/discuss.php?d=56915 Upgrading from 1.5.2 to 1.7]
*[http://moodle.org/mod/forum/discuss.php?d=56991 Upgrade nightmares.... any help appreciated]
*[http://moodle.org/mod/forum/discuss.php?d=62463 After upgrading i get "Your site may not be secure." msg]
*[http://moodle.org/mod/forum/discuss.php?d=104887 Best practices for QA]


[[Category:Installation]]
* Using Moodle [http://moodle.org/mod/forum/view.php?id=28 Installation problems forum]
* [[dev:Moodle 2.3 release notes|Moodle 2.3 release notes]]
* [[dev:Upgrade API|Upgrade API]]


[[ru:Обновление]]
[[es:Actualización de moodle]]
[[es:Actualización de moodle]]
[[fr:Mise à jour]]
[[fr:Mise à jour]]
[[ja:アップグレード]]
[[ja:Moodleをアップグレードする]]
[[nl:Upgraden]]
[[de:Aktualisierung von Moodle]]
[[zh:升级]]
[[pl:Aktualizacja]]

Latest revision as of 09:40, 22 September 2016

This page explains in detail how to upgrade Moodle. For a summary of the process, see Upgrade overview.

Check the requirements

Check that your server meets all requirements for 2.3 in Settings > Site administration > Server > Environment.

Note: You can only upgrade to Moodle 2.3 from Moodle 2.2 or later. If upgrading from earlier versions, you must upgrade to 2.2 as a first step.

Checking database schema - old sites

If your Moodle site has been upgraded through many prior versions it is possible that there will be some problems with the database schema (compared to a fresh 2.3 installation). This may cause the upgrade to fail. If your site started life prior to Moodle 2.0 it is a very good idea to check and correct the database schema before upgrading. See Verify Database Schema. You should also run the database integrity checks in the XMLDB editor.

Check for plugin updates

Check in the Moodle Plugins directory whether there is a 2.3 version available for any contributed/custom plugins (including themes) that you have previously installed on your site. If so, download the plugin code and copy it to the appropriate location in your Moodle code (see Installing plugins).

The upgrade of the plugin will then happen as part of the Moodle upgrade process.

If an out-of-date plugin causes your upgrade to fail, you can usually delete the plugin code rather than uninstalling it from within Moodle so that the data associated with it is not deleted.

Before you upgrade your site for real

We advise that you test the upgrade first on a COPY of your production site, to make sure it works as you expect.

Backup important data

There are three areas that should be backed up before any upgrade:

  1. Moodle software (For example, everything in server/htdocs/moodle)
  2. Moodle uploaded files (For example, server/moodledata)
  3. Moodle database (For example, the SQL or Postgres database)

See Site backup for more specific information.

Put your Site into maintenance mode

Before you begin upgrading your site, you should put it into maintenance mode to stop any non-admin users from logging in.

Install the new Moodle software

Standard install package

  1. Move your old Moodle software program files to another location. Do NOT copy new files over the old files.
  2. Unzip or unpack the upgrade file so that all new the Moodle software program files are in the location the old files used to be in on the server. Moodle will adjust SQL and moodledata if it needs to in the upgrade.
  3. Copy your old config.php file back to the new Moodle directory.
  4. As mentioned above, if you had installed any custom plugins on your site you should add them to the new code. It is important to check that you get the correct version for your new version of Moodle. Be particularly careful that you do not overwrite any code in the new version of Moodle.

Linux

mv moodle moodle.backup
tar xvzf moodle-1.1.tgz

Next, copy across your config.php, any custom plugins, and your .htaccess file if you created one (check that custom plugins are the correct version for your new Moodle first):

cp moodle.backup/config.php moodle
cp -pr moodle.backup/theme/mytheme moodle/theme/mytheme
cp -pr moodle.backup/mod/mymod moodle/mod/mymod

Don't forget to make moodle/config.php (and the rest of the source code) readable by your www server. Ideally the files should not be writeable by your server.

If you use cron, take care that cron.php is executeable and uses the correct php command:

chmod 740 admin/cli/cron.php (some configurations need chmod 750 or chmod 755)
copy the first line from cron.php (if it looks like '#!/usr/local/bin/php' or '#!/usr/local/bin/php5.3', no need to copy '<?php')

if necessary.

Using Git

You can use Git for updating or upgrading your Moodle. New sites are recommended to use this rather than CVS since all Moodle development has moved to Git. See Git for Administrators for details.

Command line upgrade

On Linux servers, Moodle 2.3 supports running the upgrade from the command line, rather than through a web browser. This is likely to be more reliable, particularly for large sites.

Finishing the upgrade

The last step is to trigger the upgrade processes within Moodle.

To do this just go to Settings > Site administration > Notifications.

Moodle will automatically detect the new version and perform all the SQL database or file system upgrades that are necessary. If there is anything it can't do itself (very rare) then you will see messages telling you what you need to do.

Assuming all goes well (no error messages) then you can start using your new version of Moodle and enjoy the new features!

After upgrading

The config.php file from your 2.2 installation should work fine but if you take a look at config-dist.php that came with Moodle 2.3 there are more/different options available (e.g. database drivers and settings). It's a good idea to map your old config.php settings to a new one based on the 2.3 config-dist.php.

Possible issues that may affect you in Moodle 2.3

Two assignment modules

A new assignment module has been added in Moodle 2.3. The old assignment module is still available (renamed 'Assignments 2.2') and sites which have upgraded from previous versions will have both versions available.

It is recommended that admins upgrade all existing assignments to use the new assignment module as soon as possible, as described in Assignment upgrade tool, then disable the old assignment module, to avoid the confusion of having two assignment modules.

Google registration required for Google Docs and Picasa plugins

Due to a change in Google's service, Moodle 2.3 has switched to a more secure and more user-friendly system for communicating with Google called 'OAuth 2.0'. As a result, any Google Docs and Picasa plugins (the Google Docs and Picasa repositories and the Google Docs and Picasa portfolios) used previously on the site will be disabled when the site is upgraded.

To re-enable these plugins, an administrator must register their site with Google, as described in Google OAuth 2.0 setup, and obtain a client ID and secret. The client ID and secret can then be used to configure all Google Docs and Picasa plugins.

RTL theme fixes

Moodle 2.3 includes many right-to-left (RTL) theme fixes (MDL-30337) and so sites using RTL languages, such as Arabic and Hebrew, are recommended to perform additional testing, particularly with any custom themes to ensure everything is working fine.

MySQL dmlwriteexception error when using calculated questions in a quiz

If you're using MySQL or SQL*Server and you have a problem with duplicated keys with the question_attempt_step_data table when using calculated questions in a quiz (from entering a formula which uses variables with the same characters in different cases), it is recommended that you upgrade to Moodle 3.0.x or higher ASAP. Alternatively, the problematic unique index can be dropped or the collation of the columns changed to be case-sensitive, however this is not considered a complete fix. See MDL-29332 for more information.

See also