openrat-cms

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

commit acc0cc65d3a7f33d8a91bf99345f46b162548b31
parent c875f0d04fcf3af5193ed011daf2cbea364b3881
Author: dankert <devnull@localhost>
Date:   Thu, 16 Dec 2004 00:05:20 +0100

Standard-Konfiguration

Diffstat:
config/config.ini.php | 79+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 79 insertions(+), 0 deletions(-)

diff --git a/config/config.ini.php b/config/config.ini.php @@ -0,0 +1,78 @@ +; <!-- $Id$ --> +; <?php exit('direct access denied') ?> + +; main configuration file for OpenRat +; Lines beginnung with a semicolon are comments. Empty lines are ignored. + + +[database] +dir = ./config/db/ ; directory which contains database configuration +prefix = config-db- ; praefix of database configuration files +suffix = .ini.php ; suffix of database configuration files +default = db1 ; preselected database (used for http-auth) + +[auth] +type = http ; 'http' or 'form' (must 'form' for more than 1 database connection) + +[ldap] +host = ; host of ldap server ( blank if not used ) +port = ; port of ldap server ( blank if not used ) + + +[ftp] +ascii = html,htm,php ; file extensions to use FTP ascii mode for + + +[publish] +filename = id ; filename-mode 'ss','crc32','md5','edit' or 'id' + + +[log] +file = "./log/cms.log" ; logfile ( blank if no logging ) +level = "trace" ; loglevel 'trace','debug','info','warn','error' +date_format = "M j H:i:s" ; date format +dns_lookup = true ; lookup hostname of client-IP +format = "%time %level %host %user %action %text" ; format + + +[image] +truecolor = true ; 'true' if GD2 is available, otherwise 'false' + + +[interface] +tree_width = "25%" ; width of navigation frame (tree) +file_separator = " &raquo; " ; chars between directory names +nice_urls = false ; if 'true' you need special rewrite rules in a .htaccess file! +theme = default ; +language = en ; default language +use_browser_language = true ; use the HTTP_ACCEPT_LANGUAGE header to determine language + + +[html] +tag_teletype_open = "<tt>" ; HTML-tag begin of teletype text +tag_teletype_close = "</tt>" ; HTML-tag end of teletype text + +tag_emphatic_open = "<em>" ; HTML-tag begin of emphatic text +tag_emphatic_close = "</em>" ; HTML-tag end of emphatic text + +tag_strong_open = "<strong>" ; HTML-tag begin of strong text +tag_strong_close = "</strong>" ; HTML-tag end of strong text + +tag_speech_open = "&bdquo;" ; HTML-tag begin of speech +tag_speech_close = "&rdquo;" ; HTML-tag end of speech + + +[wiki] +convert_html = true ; convert simple HTML-tags to wiki-markup (if HTML is disabled) +convert_bbcode=true = true ; convert a few BB-code tags to wiki-markup +tag_strong = "*" ; how strong text is marked +tag_emphatic = "_" ; how emphatic text is marked + + +[replace] +euro = "EUR,&euro;" ; HTML-Markup of the EUR-sign +copy = "(c),&copy;" ; HTML-Markup of copyright-char +; ... add useful replacements here + + +; END OF DOCUMENT+ \ No newline at end of file