05602d9aaf
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@133 b3834d28-1941-0410-a4f8-b48e95affb8f
19 lines
494 B
PHP
19 lines
494 B
PHP
<?php
|
|
|
|
// 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']));
|
|
|
|
?>
|