mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-26 11:29:12 +02:00
* include/functions_db.php: Fixed problem in show_alert_row_mini() * operation/agentes/status_monitor.php: Almost all code changed. Added pagination, replaced query for a paginated version and a lot more efficient. Added freetext search on name / description of monitors. * operation/agentes/estado_ultimopaquete.php: Fixed problem with refresh / push buttons on data server modules. * godmode/admin_access_logs.php: Fixed several problems. Added a better pagination. * godmode/agentes/module_manager_editor.php, godmode/agentes/module_manager_editor_network.php: When pushed SNMP walk, lost all fields. Fixed. Also fixed problems with min/max. * godmode/agentes/module_manager_editor_data.php, godmode/agentes/module_manager_editor_wmi.php, godmode/agentes/module_manager_editor_plugin.php godmode/agentes/module_manager_editor_prediction.php: Fixed problems with inverted max/min. * godmode/agentes/configurar_agente.php: Keepalive modules now are from id_module=1 (data server). before was type 0 and that gives a lot of problems. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@810 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
59 lines
2.3 KiB
PHP
59 lines
2.3 KiB
PHP
<?php
|
|
// Begin of automatic config file
|
|
$config["dbname"]="pandora"; // MySQL DataBase name
|
|
$config["dbuser"]="pandora"; // DB User
|
|
$config["dbpass"]="pfnfkudt"; // DB Password
|
|
$config["dbhost"]="localhost"; // DB Host
|
|
$config["homedir"]="/var/www/pandora_console/"; // Config homedir
|
|
$config["homeurl"]="http://localhost/pandora_console"; // Base URL
|
|
// End of automatic config file
|
|
?><?php
|
|
// Pandora FMS - the Free Monitoring System
|
|
// ========================================
|
|
// Copyright (c) 2008 Artica Soluciones Tecnológicas, http://www.artica.es
|
|
// Please see http://pandora.sourceforge.net for full contribution list
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation for version 2.
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
// Database configuration (default ones)
|
|
|
|
// Default values
|
|
|
|
// $config["dbname"]="pandora";
|
|
// $config["dbuser"]="pandora";
|
|
// $config["dbpass"]="pandora";
|
|
// $config["dbhost"]="localhost";
|
|
|
|
// This is used for reporting, please add "/" character at the end
|
|
// $config["homedir"]="/var/www/pandora_console/";
|
|
// $config["homeurl"]="/pandora_console/";
|
|
|
|
// Do not display any ERROR
|
|
//error_reporting(0); // Need to use active console at this moment
|
|
|
|
// Display ALL errors
|
|
error_reporting(E_ALL);
|
|
|
|
// This is directory where placed "/attachment" directory, to upload files stores.
|
|
// This MUST be writtable by http server user, and should be in pandora root.
|
|
// By default, Pandora adds /attachment to this, so by default is the pandora console home dir
|
|
|
|
$config["attachment_store"]=$config["homedir"];
|
|
|
|
// Default font used for graphics (a Free TrueType font included with Pandora FMS)
|
|
$config["fontpath"] = $config["homedir"]."/reporting/FreeSans.ttf";
|
|
|
|
// Style (pandora by default)
|
|
$config["style"] = "pandora";
|
|
|
|
include ("config_process.php");
|
|
?>
|