. * * @package phpservermon * @author Pepijn Over * @copyright Copyright (c) 2008-2014 Pepijn Over * @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3 * @version Release: @package_version@ * @link http://www.phpservermonitor.org/ * @since phpservermon 2.1.0 **/ // Include paths define('PSM_PATH_SRC', dirname(__FILE__) . DIRECTORY_SEPARATOR); define('PSM_PATH_VENDOR', PSM_PATH_SRC . '..' . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR); define('PSM_PATH_INC', PSM_PATH_SRC . 'includes' . DIRECTORY_SEPARATOR); define('PSM_PATH_TPL', PSM_PATH_SRC . 'templates' . DIRECTORY_SEPARATOR); define('PSM_PATH_LANG', PSM_PATH_SRC . 'lang' . DIRECTORY_SEPARATOR); // user levels define('PSM_USER_ADMIN', 10); define('PSM_USER_USER', 20); define('PSM_USER_ANONYMOUS', 30); if(function_exists('date_default_timezone_set') && function_exists('date_default_timezone_get')) { date_default_timezone_set(@date_default_timezone_get()); } // find config file $path_conf = PSM_PATH_SRC . '../config.php'; if(file_exists($path_conf)) { include_once $path_conf; } // check for a debug var if(defined('PSM_DEBUG') && PSM_DEBUG) { error_reporting(E_ALL); ini_set('display_erors', 1); } else { error_reporting(0); ini_set('display_errors', 0); } // set autoloader, make sure to set $prepend = true so that our autoloader is called first function __autoload($class) { // remove leading \ $class = ltrim($class, '\\'); $path_parts = explode('\\', $class); $filename = array_pop($path_parts); $path = implode(DIRECTORY_SEPARATOR, $path_parts) . DIRECTORY_SEPARATOR . $filename . '.class.php' ; // search in these dirs: $basedirs = array( PSM_PATH_SRC, PSM_PATH_VENDOR ); foreach($basedirs as $dir) { if(file_exists($dir . $path)) { require_once $dir . $path; return; } } } // auto-find all include files $includes = glob(PSM_PATH_INC . '*.inc.php'); foreach($includes as $file) { include_once $file; } // init db connection $db = new psm\Service\Database(); // sanity check! if(defined('PSM_INSTALL') && PSM_INSTALL) { // install mode if($db->status()) { // connection established, attempt to load config. // no biggie if it doesnt work because the user is still in the install module. psm_load_conf(); } } else { if($db->getDbHost() === null) { // no config file has been loaded, redirect the user to the install header('Location: install.php'); die(); } // config file has been loaded, check if we have a connection if(!$db->status()) { die('Unable to establish database connection...'); } // attempt to load configuration from database if(!psm_load_conf()) { // unable to load from config table header('Location: install.php'); die(); } // config load OK, make sure database version is up to date $installer = new \psm\Util\Install\Installer($db); if($installer->isUpgradeRequired()) { die('Your database is for an older version and requires an upgrade, please click here to update your database to the latest version.'); } } $lang = psm_get_conf('language', 'en_US'); psm_load_lang($lang);