X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=initialize.php;h=c1a8437a035ed675a9665b8d63054277c4667627;hb=c370348dba4b65ae74dc2b8d5bf1b9c0ed5f19cc;hp=1a508e94306cf5e76a78cead318e9f818c9a0899;hpb=c761179e3999b6a2d8217369b647c69ad9603f38;p=timetracker.git diff --git a/initialize.php b/initialize.php index 1a508e94..c1a8437a 100644 --- a/initialize.php +++ b/initialize.php @@ -74,7 +74,6 @@ $smarty = new Smarty; $smarty->use_sub_dirs = false; $smarty->template_dir = TEMPLATE_DIR; $smarty->compile_dir = TEMPLATE_DIR.'_c'; -$GLOBALS['SMARTY'] = &$smarty; // Note: these 3 settings below used to be in .htaccess file. Moved them here to eliminate "error 500" problems // with some shared hostings that do not have AllowOverride Options or AllowOverride All in their apache configurations. @@ -84,6 +83,12 @@ session_cache_expire(1); $phpsessid_ttl = defined('PHPSESSID_TTL') ? PHPSESSID_TTL : 60*60*24; // Set lifetime for garbage collection. ini_set('session.gc_maxlifetime', $phpsessid_ttl); +// Set PHP session path, if defined to avoid garbage collection interference from other scripts. +if (defined('PHP_SESSION_PATH')) { + ini_set('session.save_path', PHP_SESSION_PATH); + ini_set('session.gc_probability', 1); +} + // Set session cookie lifetime. session_set_cookie_params($phpsessid_ttl); if (isset($_COOKIE['tt_PHPSESSID'])) { @@ -191,9 +196,6 @@ if (!$lang) { // Load i18n file. $i18n->load($lang); -$GLOBALS['I18N'] = &$i18n; - -$GLOBALS['USER'] = &$user; // Assign things for smarty to use in template files. $smarty->assign('i18n', $i18n->keys);