3c181054db
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@168 b3834d28-1941-0410-a4f8-b48e95affb8f
52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
/*
|
|
* Define constants use in all the application.
|
|
* Some constants are based on variables from configuration file.
|
|
*/
|
|
|
|
// Debug managament
|
|
if(isset($GLOBALS['debugMode'])) {
|
|
define('DEBUG_MODE', $GLOBALS['debugMode']);
|
|
define('DEBUG_EXTRA', $GLOBALS['debugMode']); // Constant used exclusively into db/ directory
|
|
}
|
|
|
|
// Determine the base URL as ROOT
|
|
if (!isset($GLOBALS['root'])) {
|
|
$pieces = explode('/', $_SERVER['SCRIPT_NAME']);
|
|
$rootTmp = '/';
|
|
foreach($pieces as $piece) {
|
|
if ($piece != '' && !strstr($piece, '.php')) {
|
|
$rootTmp .= $piece .'/';
|
|
}
|
|
}
|
|
if (($rootTmp != '/') && (substr($rootTmp, -1, 1) != '/')) {
|
|
$rootTmp .= '/';
|
|
}
|
|
|
|
define('ROOT', 'http://'. $_SERVER['HTTP_HOST'] . $rootTmp);
|
|
}
|
|
|
|
// Error codes
|
|
define('GENERAL_MESSAGE', 200);
|
|
define('GENERAL_ERROR', 202);
|
|
define('CRITICAL_MESSAGE', 203);
|
|
define('CRITICAL_ERROR', 204);
|
|
|
|
// Page name
|
|
define('PAGE_INDEX', "index");
|
|
define('PAGE_BOOKMARKS', "bookmarks");
|
|
|
|
|
|
// Miscellanous
|
|
|
|
// INSTALLATION_ID is based on directory DB and used as prefix (in session and cookie) to prevent mutual login for different installations on the same host server
|
|
define('INSTALLATION_ID', md5($GLOBALS['dbname'].$GLOBALS['tableprefix']));
|
|
|
|
|
|
// Correct bug with PATH_INFO (maybe for Apache 1)
|
|
if(strlen($_SERVER["PATH_INFO"])<strlen($_SERVER["ORIG_PATH_INFO"])) {
|
|
$_SERVER["PATH_INFO"] = $_SERVER["ORIG_PATH_INFO"];
|
|
}
|
|
|
|
?>
|