Allow at most 8h for the session
[infodrom/hallinta] / config.php.template
1 <?php
2
3 define('TITLE', 'Infodrom Administration');
4 define('PAGETITLE', 'Infodrom Hallinta');
5
6 define('SESSION_NAME', 'HALLINTA');
7 # Cookie path, defaults to /
8 # define('SESSION_PATH', '/hallinta/');
9 # Cookie lifetime, defaults to 24 hours
10 # define('SESSION_LIFETIME', 60*60*2);
11
12 # defaults to images/login.jpg
13 # define('LOGIN_IMG', 'images/login_neu.jpg');
14
15 # Additional CSS for the instance
16 # define('PATH_CSS', 'custom.css');
17
18
19 define('DBDRIVER', 'pgsql');
20 define('DBDRIVER', 'mysql');
21 define('DBHOST', 'hostname');
22 define('DBNAME', 'infodrom');
23 define('DBUSER', 'username');
24 define('DBPASS', 'password');
25
26 define('DELETE_COPY', true);
27
28 define('DEBUG', false);
29
30 ?>