. ************************************************************************ */ /** * * global.php, TSM Monitor * * This file defines global configuration variables, includes * generic code and external libraries, initializes the PHP * session and establishes the database connection. * * @author Frank Fegert * @package tsmmonitor */ /* !!! WARNING !!! The defaults in this file are not meant to be altered by users! See include/config.php for user configurable database settings. */ // ** Global configuration array ** // $config = array(); // ** Default database settings ** // $config["db_type"] = 'mysql'; $config["db_name"] = 'tsmmonitor'; $config["db_user"] = 'tsmmonitor'; $config["db_password"] = 'tsmmonitor'; $config["db_host"] = 'localhost'; $config["db_port"] = '3306'; $config["db_charset"] = 'utf8'; $config["db_collate"] = ''; // ** Include user configureable definitions ** // include(dirname(__FILE__) . "/config.php"); // ** Current TSM Monitor version ** // $config["tsm_monitor_version"] = '0.0.1'; // ** Set TSM Monitor server OS to a general value (only 'unix' or 'win32') ** // $config["server_os"] = (strstr(PHP_OS, "WIN")) ? "win32" : "unix"; // ** Search paths for external programs (dsmadmc, php, ...) ** // if ($config["server_os"] == "win32") { $config["search_path"] = array('c:/php', 'c:/progra~1/php', 'c:/progra~2/php', 'c:/xampp/php', 'd:/php', 'd:/progra~1/php', 'd:/progra~2/php', 'd:/xampp/php', 'c:/progra~1/tivoli/tsm/baclient', 'c:/progra~2/tivoli/tsm/baclient', 'd:/progra~1/tivoli/tsm/baclient', 'd:/progra~2/tivoli/tsm/baclient'); $config["binary_suffix"] = ".exe"; } elseif ($config["server_os"] == "unix") { $config["search_path"] = array('/bin', '/sbin', '/usr/bin', '/usr/sbin', '/usr/local/bin', '/usr/local/sbin', '/usr/tivoli/tsm/client/admin/bin', '/opt/tivoli/tsm/client/ba/bin'); $config["binary_suffix"] = ""; } // ** Paths (libraries, includes, ...) ** // $config["base_path"] = ereg_replace("(.*[\\\/])includes", "\\1", dirname(__FILE__)); $config["library_path"] = ereg_replace("(.*[\\\/])includes", "\\1extlib", dirname(__FILE__)); $config["include_path"] = dirname(__FILE__); // ** Try to convince browsers not to cache any pages ** // header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); // ** Display ALL PHP errors ** // //error_reporting(E_ALL); // ** Include generic code and external libraries ** // include ($config["library_path"] . "/adodb5/adodb-exceptions.inc.php"); include ($config["library_path"] . "/adodb5/adodb.inc.php"); include_once($config["include_path"] . "/adodb.php"); include_once($config["include_path"] . "/tsmmonitor.php"); include_once($config["include_path"] . "/polld.php"); // ** Connect to the database ** // $adodb = new ADOdb($config["db_host"], $config["db_port"], $config["db_user"], $config["db_password"], $config["db_name"], $config["db_type"]); // ** instantiate TSMMonitor Class ** // if (isset($_SERVER['HTTP_USER_AGENT'])) $tsmmonitor = new TSMMonitor($adodb); // check to see if this is a new installation $version = $adodb->fetchCellDB("SELECT confval FROM cfg_config WHERE confkey='version'", ''); if (isset($_SERVER['HTTP_USER_AGENT']) && $version != $config["tsm_monitor_version"] && basename($_SERVER['REQUEST_URI']) != 'install.php') { header("Location: install.php"); exit; } $polld_maxproc = $adodb->fetchCellDB("SELECT confval FROM cfg_config WHERE confkey='polld_maxproc'", ''); if (isset($polld_maxproc)) { $config["polld_maxproc"] = $polld_maxproc; } else { $config["polld_maxproc"] = 5; } // ** Include generic code and external libraries ** // // ... more includes here ?>