Menu="Plugins"
Title="Plugin File Install Errors"
Tag="puzzle-piece"
Cond="glob('/boot/config/plugins-error/*.plg')"
---
require_once "$docroot/plugins/dynamix.plugin.manager/include/PluginHelpers.php";
echo "
";
echo "| "._('Plugin File')." | "._('Status')." |
";
echo "";
foreach (glob("/boot/config/plugins-error/*.plg", GLOB_NOSORT) as $plugin_file) {
// status info
$status_info = _('ERROR')."
".make_link("delete", $plugin_file);
echo "";
echo "| {$plugin_file} | ";
echo "{$status_info} | ";
echo "
";
}
echo "
";
?>
:help2
> These plugins were not installed because of some kind of installation error. You should delete these
> plugins and then **reboot** your server.*
:end