git-svn-id: http://www.observium.org/svn/observer/trunk@302 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong
2008-11-13 11:05:30 +00:00
parent 716fe2802b
commit 3d8a4e1c64
2 changed files with 30 additions and 25 deletions

View File

@@ -61,12 +61,12 @@ $config['favicon'] = "favicon.ico";
$config['header_color'] = "#1F334E";
$config['page_refresh'] = "30"; ## Refresh the page every xx seconds
$config['front_page'] = "pages/front/jt.php";
$config['email_default'] = "you@yourdomain";
$config['email_from'] = "Observer <observer@yourdomain>";
$config['email_headers'] = "From: " . $config['email_from'] . "\r\n";
### Which interface sections should we show?
$config['int_customers'] = 1; # Enable Customer Port Parsing
@@ -79,9 +79,9 @@ $config['show_locations'] = 1; # Enable Locations on menu
### Which additional features should we enable?
$config['enable_bgp'] = 1; # Enable BGP session collection and display
$config['enable_syslog'] = 1; # Enable Syslog
$config['enable_bgp'] = 1; # Enable BGP session collection and display
$config['enable_syslog'] = 1; # Enable Syslog
$config['enable_billing'] = 1; # Enable BGP session collection and display
## If a syslog entry contails these strings it is deleted from the database
$config['syslog_filter'] = array("last message repeated", "Connection from UDP: [127.0.0.1]:");
@@ -107,26 +107,6 @@ $list_colour_b = "#eeeeee";
$warn_colour_a = "#ffeeee";
$warn_colour_b = "#ffcccc";
##############################
# No changes below this line #
##############################
$config['version'] = "0.3.2-pre";
### Connect to database
if (!@mysql_connect($config['db_host'], $config['db_user'], $config['db_pass'])) {
echo "<h2>MySQL Error</h2>";
die;
}
mysql_select_db($config['db_name']);
# Set some times needed by loads of scripts (it's dynamic, so we do it here!)
$now = time();
$day = time() - (24 * 60 * 60);
$twoday = time() - (2 * 24 * 60 * 60);
$week = time() - (7 * 24 * 60 * 60);
$month = time() - (31 * 24 * 60 * 60);
$year = time() - (365 * 24 * 60 * 60);
include("includes/static-config.php");
?>

View File

@@ -0,0 +1,25 @@
<?php
##############################
# No changes below this line #
##############################
$config['version'] = "0.4.0";
### Connect to database
if (!@mysql_connect($config['db_host'], $config['db_user'], $config['db_pass'])) {
echo "<h2>MySQL Error</h2>";
die;
}
mysql_select_db($config['db_name']);
# Set some times needed by loads of scripts (it's dynamic, so we do it here!)
$now = time();
$day = time() - (24 * 60 * 60);
$twoday = time() - (2 * 24 * 60 * 60);
$week = time() - (7 * 24 * 60 * 60);
$month = time() - (31 * 24 * 60 * 60);
$year = time() - (365 * 24 * 60 * 60);
?>