openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 2ae536896ad284286337b4ca2596d2b84f2c704b
parent 6849e7cd955c465bbb2d32bb983a89b94cc6568f
Author: dankert <devnull@localhost>
Date:   Fri,  6 Apr 2007 03:43:32 +0200

Kommentare erg?nzt.

Diffstat:
config/log.ini.php | 34+++++++++++++++++++++++++++++-----
config/security.ini.php | 1+
config/webdav.ini.php | 2+-
3 files changed, 31 insertions(+), 6 deletions(-)

diff --git a/config/log.ini.php b/config/log.ini.php @@ -1,7 +1,31 @@ ; <?php exit('direct access denied') ?> -file = "" ; logfile ( blank if no logging ) -level = "trace" ; loglevel 'trace','debug','info','warn','error' -date_format = "M j H:i:s" ; date format -dns_lookup = false ; lookup hostname of client-IP -format = "%time %level %host %user %action %text" ; format + +; Logfile settings + + +; filename of logfile. Every log entry will be appended to this file. +; This file must be writable by the webserver. +; If blank (default), no logging will be done. +file = "" + +; loglevel are one of 'trace','debug','info','warn','error' +level = "warn" + +; date format (for variable %time, see 'format'. This format is used by PHPs date()-function. +; See http://www.php.net/date +date_format = "M j H:i:s" + +; lookup hostname of client-IP +; this may increase performance, if 'true'. Be careful! +dns_lookup = false + +; output format +; the following variables are replaced: +; %time by the current time of the log entry. +; %level the logging level +; %host client ip ore hostname (see 'dns_lookup' entry above) +; %user username, who is logged in, ore '-' if not logged in. +; %action what is happening now +; %text reason of the log entry +format = "%time %level %host %user %action %text" diff --git a/config/security.ini.php b/config/security.ini.php @@ -31,6 +31,7 @@ type=form ; 'database' uses the internal database table as password store. ; 'authdb' uses an external database table as password store, see section [authdb] which has to exist. ; 'ldap' uses an external LDAP directory for password checking. +; 'http' uses an HTTP-Auth Server for password checking (TODO) type=database ; per-user setting of the LDAP DN. diff --git a/config/webdav.ini.php b/config/webdav.ini.php @@ -8,7 +8,7 @@ enable=false ; Creation of new folders, files. create=true -; Maximum Filesize for new files. +; Maximum filesize for uploaded files (in kB) max_file_size=1000 ; Readonly-Access.