X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Fconfig.php.dist;h=577baeafbf3b750bb6543f2dc6eeca64a6264754;hb=2b90ff7edde48b64097c1bb60cde036b995c4220;hp=b9ae7bd02c2946ec89c808aa0572fc0f2f8d0a22;hpb=53e04060039f7c488fa5ca6bc018103763b901c5;p=timetracker.git diff --git a/WEB-INF/config.php.dist b/WEB-INF/config.php.dist index b9ae7bd0..577baeaf 100644 --- a/WEB-INF/config.php.dist +++ b/WEB-INF/config.php.dist @@ -188,7 +188,7 @@ define('AUTH_MODULE', 'db'); // array('Ldap Testers') means that the user must be a member Ldap Testers group. // array('Ldap Testers', 'Ldap Users') means the user must be a member of both Ldap Testers and Ldap Users groups. -// define('AUTH_DEBUG', false); // Note: enabling AUTH_DEBUG breaks redirects as debug output is printed before setting redirect header. Do not enable on production systems. +// define('DEBUG', false); // Note: enabling DEBUG breaks redirects as debug output is printed before setting redirect header. Do not enable on production systems. // Team managers can set monthly work hour quota for years between the following values. @@ -198,7 +198,11 @@ define('AUTH_MODULE', 'db'); // Height in pixels for the note input field in time.php. Defaults to 40. // define('NOTE_INPUT_HEIGHT', 100); -// $GLOBALS['FILE_STORAGE_PARAMS'] = array( -// 'uri' => 'localhost', // File storage uri. -// 'site_id' => '1', // This site id for file storage facility. -// 'site_key' => 'debug_key'); // This site key for file storage facility. +// File storage facility location for attachments. +// This feature requires a subscription or a locally installed appliance. +// define('FILE_STORAGE_URI', 'localhost'); +define('FILE_STORAGE_URI', 'https://www.anuko.com/files/'); + +// A comma-separated list of default plugins for new group registrations. +// Example below enables charts and attachments. +// define('DEFAULT_PLUGINS', 'ch,at');