1<?php
2// Pandora FMS - http://pandorafms.com
3// ==================================================
4// Copyright (c) 2005-2010 Artica Soluciones Tecnologicas
5//
6// This program is free software; you can redistribute it and/or
7// modify it under the terms of the  GNU Lesser General Public License
8// as published by the Free Software Foundation; version 2
9//
10// This program is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13// GNU General Public License for more details.
14
15/**
16 * @package Include
17 * @subpackage Config
18 */
19
20// Default values
21
22// $config["dbname"]="pandora";
23// $config["dbuser"]="pandora";
24// $config["dbpass"]="pandora";
25// $config["dbhost"]="localhost";
26
27// This is used for reporting, please add "/" character at the end
28// $config["homedir"]="/var/www/pandora_console/";
29// $config["homeurl"]="/pandora_console/";
30
31// $config["auth"]["scheme"] = "mysql";
32
33/**
34 * Do not display any ERROR
35 */
36error_reporting(E_ALL);
37
38// Display ALL errors
39// error_reporting(E_ERROR);
40
41$ownDir = dirname(__FILE__) . DIRECTORY_SEPARATOR;
42include ($ownDir . "config_process.php");
43?>
44