2008-04-18 11:57:32 +02:00
< ? php
2008-11-21 11:44:28 +01:00
/*
2008-11-25 16:57:29 +01:00
* Define constants used in all the application .
2008-11-21 11:44:28 +01:00
* 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 );
}
2008-04-18 11:57:32 +02:00
// Error codes
define ( 'GENERAL_MESSAGE' , 200 );
define ( 'GENERAL_ERROR' , 202 );
define ( 'CRITICAL_MESSAGE' , 203 );
define ( 'CRITICAL_ERROR' , 204 );
2008-05-14 10:55:38 +02:00
// Page name
define ( 'PAGE_INDEX' , " index " );
define ( 'PAGE_BOOKMARKS' , " bookmarks " );
2008-04-18 11:57:32 +02:00
// Miscellanous
2008-06-01 15:17:54 +02:00
// 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
2008-05-09 10:16:05 +02:00
define ( 'INSTALLATION_ID' , md5 ( $GLOBALS [ 'dbname' ] . $GLOBALS [ 'tableprefix' ]));
2008-04-18 11:57:32 +02:00
2008-06-04 10:11:11 +02:00
// Correct bug with PATH_INFO (maybe for Apache 1)
if ( strlen ( $_SERVER [ " PATH_INFO " ]) < strlen ( $_SERVER [ " ORIG_PATH_INFO " ])) {
2008-11-21 11:44:28 +01:00
$_SERVER [ " PATH_INFO " ] = $_SERVER [ " ORIG_PATH_INFO " ];
2008-06-04 10:11:11 +02:00
}
2008-04-18 11:57:32 +02:00
?>