X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=initialize.php;h=c9a4245861ca975b6ccff144dbaf144634a44928;hb=16b12b986b03d54187662046e4a0a3c7a8c2393e;hp=ded539cc25ba9132a2e06378da538395a1e6c54b;hpb=7fafd0cdc53c376b557a5504af53dacdfbcdb533;p=timetracker.git diff --git a/initialize.php b/initialize.php index ded539cc..c9a42458 100644 --- a/initialize.php +++ b/initialize.php @@ -84,6 +84,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'])) { @@ -120,6 +126,10 @@ define('TYPE_ALL', 0); // Time record can be specified with either duration or s define('TYPE_START_FINISH', 1); // Time record has start and finish times. define('TYPE_DURATION', 2); // Time record has only duration, no start and finish times. +// Definitions for uncompleted time entry indicators. +define('UNCOMPLETED_INDICATORS_NONE', 0); // Do not show indicators. +define('UNCOMPLETED_INDICATORS', 1); // Show indicators. + // User access rights - bits that collectively define an access mask to the system (a role). // We'll have some bits here (1,2, etc...) reserved for future use. define('right_data_entry', 4); // Right to enter work hours and expenses.