Extension:Sudo/ru

This page is a translated version of the page Extension:Sudo and the translation is 21% complete.
Справка по расширениям MediaWiki
Sudo
Статус релиза: не поддерживается
Реализация Идентификация пользователя
Описание Gives the ability for Sudoers on the wiki to login to other users' accounts.
Автор(ы) Daniel Friesen (Dantmanобсуждение)
Последняя версия 0.6.0 (2018-06-29)
MediaWiki 1.29+
Изменения в БД Нет
Лицензия GNU General Public License 2.0 или позднее
Скачать
  • sudo
Ежеквартальные загрузки 3 (Ranked 144th)
Переведите расширение Sudo, если оно доступно на translatewiki.net
Проблемы Открытые задачи · Сообщить об ошибке

The Sudo extension the ability for Sudoers on the wiki to login to other users' accounts, using "Special:Sudo". This may be used for helping users set their own preferences, testing to see if something in the UI is affected by their login, or changing things under their name.

Sudo does log use of sudo to transfer to another user's accounts; however, beyond that there is no tracking of what the sudoed user does. Be careful who you give sudo to as it can be abused in the worst of ways.

Установка

  • Скачайте и распакуйте файл(ы) в папку с названием Sudo в вашей папке extensions/.
    Вместо этого разработчикам и соавторам кода следует установить расширение из Git, используя:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Sudo
  • Добавьте следующий код в конце вашего файла LocalSettings.php :
    wfLoadExtension( 'Sudo' );
    
  • Configure user group and user right at your convenience.
  •   Готово – Перейдите на страницу Special:Version на своей вики, чтобы удостовериться в том, что расширение успешно установлено.

Настройка

The user right "sudo" will have to be set for an existing user group, e.g. "bureaucrat" or preferably for a new user group:

$wgGroupPermissions['bureaucrat']['sudo'] = true;
$wgGroupPermissions['sudo']['sudo'] = true;

Known issues

See phab:maniphest/query/Uaw4sPCoSHql/#R

См. также

  • $wgRequirePasswordforEmailChange Allows to change the email using this extension (MW 1.20.x to MW 1.26.x) when set to "false". Starting with MW 1.27.0 it is no longer possible to change the email address of an account without knowing the password with the help of this extension.