Files
webgui/plugins/dynamix.plugin.manager/PluginsError.page
2016-10-24 09:44:19 +02:00

39 lines
1.2 KiB
Plaintext

Menu="Plugins"
Title="Plugin File Install Errors"
Cond="glob('/boot/config/plugins-error/*.plg')"
---
<?PHP
/* Copyright 2005-2016, Lime Technology
* Copyright 2012-2016, Bergware International.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
?>
<?
require_once "$docroot/plugins/dynamix.plugin.manager/include/PluginHelpers.php";
echo "<table class='tablesorter' id='plugin_table'><thead>";
echo "<tr><th>Plugin File</th><th>Status</th></tr>";
echo "</thead><tbody>";
foreach (glob("/boot/config/plugins-error/*.plg", GLOB_NOSORT) as $plugin_file) {
// status info
$status_info = "ERROR<br />" . make_link("delete", $plugin_file);
echo "<tr>";
echo "<td>{$plugin_file}</td>";
echo "<td><span style=\"white-space:nowrap\">{$status_info}</span></td>";
echo "</tr>";
}
echo "</tbody></table>";
?>
> These plugins were not installed because of some kind of installation error. You should delete these
> plugins and then **reboot** your server.*