Moodle 安装插件设置未出现在站点管理中

Moodle Install plugin setting doesn't appear in Site administration

我是moodle的新用户,正在尝试创建一个教育平台。我目前使用的是免费版的 moodle,所以我可以测试这些功能,并在试用期结束后购买许可证。我的问题是我正在尝试从插件上传主题,但“安装插件”按钮没有出现在“站点管理”中。我是论坛里唯一的超级管理员。我见过一些类似的问题,其中大多数的答案是确保您使用超级管理员视图查看(但我确定这不是问题所在)。

我已将此站点托管到 moodle 官方服务器。经过搜索和多次重新安装平台,未能找出问题所在。

有没有人遇到同样的问题并找到解决方案?

你可以编辑或查看 yourmoodlesite/config.php 吗?

它有这些设置之一吗?

$CFG->disableonclickaddoninstall = true;

$CFG->disableupdateautodeploy = true;

删除它们或设置为false

有关详细信息,请参阅 yourmoodlesite/config-dist.php

新版本的 Moodle

// Use the following flag to completely disable the installation of plugins
// (new plugins, available updates and missing dependencies) and related
// features (such as cancelling the plugin installation or upgrade) via the
// server administration web interface.
//
//      $CFG->disableupdateautodeploy = true;

旧版本的 Moodle

// Use the following flag to completely disable the On-click add-on installation
// feature and hide it from the server administration UI.
//
//      $CFG->disableonclickaddoninstall = true;