Only users that are not already enrolled in the course will be found (with any role).
Howard Miller
Posts made by Howard Miller
You can't. The only way to "downgrade" is if you have a complete backup of the earlier version.
I'm wondering if it might be this - https://tracker.moodle.org/browse/MDL-78488
We had some problems with viewing the questionbank in courses with significant numbers of attempts.
We had some problems with viewing the questionbank in courses with significant numbers of attempts.
This is a bit of code I use to creat the copy commands for all contrib plugins on my site. I use it when I'm doing major upgrades. As Leon says, contrib plugins are ones that are NOT standard plugins - and that's just a hard code list.
Use at your own risk...
Use at your own risk...
<?php
require_once(dirname(__FILE__) . '/config.php');
$rootfrom = required_param('basefrom', PARAM_CLEAN);
$rootto = required_param('baseto', PARAM_CLEAN);
$manager = core_plugin_manager::instance();
$allplugins = $manager->get_plugins();
echo "<ul>";
foreach ($allplugins as $type => $typeplugins) {
$standard = core_plugin_manager::standard_plugins_list($type);
foreach ($typeplugins as $plugin => $info) {
if (!$standard || !in_array($plugin, $standard)) {
if ($info->rootdir) {
$from = $rootfrom . $info->rootdir;
$to = $rootto . $info->typerootdir;
echo "<li>cp -R $from $to</li>\n";
}
}
}
}