diff options
-rw-r--r-- | constants.inc.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/constants.inc.php b/constants.inc.php index e64db43..2576385 100644 --- a/constants.inc.php +++ b/constants.inc.php @@ -8,7 +8,8 @@ define('CRITICAL_ERROR', 204); // Miscellanous -# INSTALLATION_ID is based on directory path and used as prefix (in session and cookie) to prevent mutual login for different installations on the same host server -define('INSTALLATION_ID', md5(dirname(realpath('.')))); +// INSTALLATION_ID is based on directory path and used as prefix (in session and cookie) to prevent mutual login for different installations on the same host server +//define('INSTALLATION_ID', md5(dirname(realpath('.')))); +define('INSTALLATION_ID', md5($GLOBALS['dbname'].$GLOBALS['tableprefix'])); ?> |