xref: /dokuwiki/conf/dokuwiki.php (revision f8cc712e2ad522d0bd56b9ba3983cd42abf664ad)
14dc4b499Smatthiasgrimm<?php
2f3f0262cSandi/**
3f3f0262cSandi * This is DokuWiki's Main Configuration file
4c29dc6e4SAndreas Gohr *
5c29dc6e4SAndreas Gohr * All the default values are kept here, you should not modify it but use
656ee9557SAndreas Gohr * a local.php file instead to override the settings from here.
7c29dc6e4SAndreas Gohr *
8f3f0262cSandi * This is a piece of PHP code so PHP syntax applies!
9f3f0262cSandi *
10f3f0262cSandi * For help with the configuration see http://www.splitbrain.org/dokuwiki/wiki:config
11f3f0262cSandi */
12f3f0262cSandi
13f3f0262cSandi
14f3f0262cSandi/* Datastorage and Permissions */
15039e19f5STom Hoover
161ca31cfeSAndreas Gohr$conf['fmode']       = 0644;              //set file creation mode
171ca31cfeSAndreas Gohr$conf['dmode']       = 0755;              //set directory creation mode
18f3f0262cSandi$conf['lang']        = 'en';              //your language
19f62ea8a1Sandi$conf['basedir']     = '';                //absolute dir from serveroot - blank for autodetection
20ef7b3ecdSAndreas Gohr$conf['baseurl']     = '';                //URL to server including protocol - blank for autodetect
2198407a7aSandi$conf['savedir']     = './data';          //where to store all the files
22f6e0e340SAndreas Gohr$conf['allowdebug']  = 0;                 //allow debug output, enable if needed 0|1
23f3f0262cSandi
24f3f0262cSandi/* Display Options */
25f3f0262cSandi
26f3f0262cSandi$conf['start']       = 'start';           //name of start page
27f3f0262cSandi$conf['title']       = 'DokuWiki';        //what to show in the title
286b13307fSandi$conf['template']    = 'default';         //see tpl directory
29f3f0262cSandi$conf['fullpath']    = 0;                 //show full path of the document or relative to datadir only? 0|1
30f3f0262cSandi$conf['recent']      = 20;                //how many entries to show in recent
31f3f0262cSandi$conf['breadcrumbs'] = 10;                //how many recent visited pages to show
3231e187f8SSean Coates$conf['youarehere']  = 0;                 //show "You are here" navigation? 0|1
33f3f0262cSandi$conf['typography']  = 1;                 //convert quotes, dashes and stuff to typographic equivalents? 0|1
34f3f0262cSandi$conf['htmlok']      = 0;                 //may raw HTML be embedded? This may break layout and XHTML validity 0|1
35f3f0262cSandi$conf['phpok']       = 0;                 //may PHP code be embedded? Never do this on the internet! 0|1
36f3f0262cSandi$conf['dformat']     = 'Y/m/d H:i';       //dateformat accepted by PHPs date() function
37f3f0262cSandi$conf['signature']   = ' --- //[[@MAIL@|@NAME@]] @DATE@//'; //signature see wiki:config for details
389773c5edSjoe.lapp$conf['toptoclevel'] = 1;                 //Level starting with and below to include in AutoTOC (max. 5)
39f3f0262cSandi$conf['maxtoclevel'] = 3;                 //Up to which level include into AutoTOC (max. 5)
40f3f0262cSandi$conf['maxseclevel'] = 3;                 //Up to which level create editable sections (max. 5)
41f3f0262cSandi$conf['camelcase']   = 0;                 //Use CamelCase for linking? (I don't like it) 0|1
428a831f2bSAndreas Gohr$conf['deaccent']    = 1;                 //deaccented chars in pagenames (1) or romanize (2) or keep (0)?
43a77f5846Sjan$conf['useheading']  = 0;                 //use the first heading in a page as its name
44e28299ccSmatthiasgrimm$conf['refcheck']    = 1;                 //check for references before deleting media files
45e28299ccSmatthiasgrimm$conf['refshow']     = 0;                 //how many references should be shown, 5 is a good value
46f3f0262cSandi
47f3f0262cSandi/* Antispam Features */
48f3f0262cSandi
49f3f0262cSandi$conf['usewordblock']= 1;                 //block spam based on words? 0|1
506ba61cb1Sandi$conf['indexdelay']  = 60*60*24*5;        //allow indexing after this time (seconds) default is 5 days
516ba61cb1Sandi$conf['relnofollow'] = 1;                 //use rel="nofollow" for external links?
52f3f0262cSandi$conf['mailguard']   = 'hex';             //obfuscate email addresses against spam harvesters?
53f3f0262cSandi                                          //valid entries are:
54f3f0262cSandi                                          //  'visible' - replace @ with [at], . with [dot] and - with [dash]
55f3f0262cSandi                                          //  'hex'     - use hex entities to encode the mail address
56f3f0262cSandi                                          //  'none'    - do not obfuscate addresses
57f3f0262cSandi
58b0855b11Sandi/* Authentication Options - read http://www.splitbrain.org/dokuwiki/wiki:acl */
59039e19f5STom Hoover
60f3f0262cSandi$conf['useacl']      = 0;                //Use Access Control Lists to restrict access?
61cab2716aSmatthias.grimm$conf['autopasswd']  = 1;                //autogenerate passwords and email them to user
62b0855b11Sandi$conf['authtype']    = 'plain';          //which authentication backend should be used
63d7be6245Sandi$conf['passcrypt']   = 'smd5';           //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411)
64f3f0262cSandi$conf['defaultgroup']= 'user';           //Default groups new Users are added to
652a27e99aSandi$conf['superuser']   = '!!not set!!';    //The admin can be user or @group
66*f8cc712eSAndreas Gohr$conf['manager']     = '!!not set!!';    //The manager can be user or @group
678b06d178Schris$conf['profileconfirm'] = '1';           //Require current password to confirm changes to user profile
681d5856cfSAndreas Gohr$conf['disableactions'] = '';            //comma separated list of actions to disable
69f3f0262cSandi
70f3f0262cSandi/* Advanced Options */
71039e19f5STom Hoover
72c29dc6e4SAndreas Gohr$conf['updatecheck'] = 1;                //automatically check for new releases?
736c7843b5Sandi$conf['userewrite']  = 0;                //this makes nice URLs: 0: off 1: .htaccess 2: internal
74f3f0262cSandi$conf['useslash']    = 0;                //use slash instead of colon? only when rewrite is on
75ee4c4a1bSAndreas Gohr$conf['usedraft']    = 1;                //automatically save a draft while editing (0|1)
764b5db43bSjoe.lapp$conf['sepchar']     = '_';              //word separator character in page names; may be a
774b5db43bSjoe.lapp                                         //  letter, a digit, '_', '-', or '.'.
78f3f0262cSandi$conf['canonical']   = 0;                //Should all URLs use full canonical http://... style?
79f3f0262cSandi$conf['autoplural']  = 0;                //try (non)plural form of nonexisting files?
80ff3ed99fSmarcel$conf['compression'] = 'gz';             //compress old revisions: (0: off) ('gz': gnuzip) ('bz2': bzip)
81ff3ed99fSmarcel                                         //  bz2 generates smaller files, but needs more cpu-power
82f3f0262cSandi$conf['cachetime']   = 60*60*24;         //maximum age for cachefile in seconds (defaults to a day)
83f3f0262cSandi$conf['locktime']    = 15*60;            //maximum age for lockfiles (defaults to 15 minutes)
84894a80ccSAndreas Gohr$conf['fetchsize']   = 0;                //maximum size (bytes) fetch.php may download from extern, disabled by default
85f3f0262cSandi$conf['notify']      = '';               //send change info to this email (leave blank for nobody)
86a06e4bdbSSebastian Harl$conf['registernotify'] = '';            //send info about newly registered users to this email (leave blank for nobody)
87f3f0262cSandi$conf['mailfrom']    = '';               //use this email when sending mails
88f8f8e2deSAndreas Gohr$conf['gzip_output'] = 0;                //use gzip content encodeing for the output xhtml (if allowed by browser)
89825ec232Sandi$conf['gdlib']       = 2;                //the GDlib version (0, 1 or 2) 2 tries to autodetect
9068375754SPavel Vitis$conf['im_convert']  = '';               //path to ImageMagicks convert (will be used instead of GD)
912b03e74dSBen Coburn$conf['jpg_quality'] = '70';             //quality of compression when scaling jpg images (0-100)
92dc57ef04Sandi$conf['spellchecker']= 0;                //enable Spellchecker (needs PHP >= 4.3.0 and aspell installed)
93f9eb5648Ssteven-danz$conf['subscribers'] = 0;                //enable change notice subscription support
9478a6aeb1SAndreas Gohr$conf['compress']    = 1;                //Strip whitespaces and comments from Styles and JavaScript? 1|0
950dc92c6fSAndreas Gohr$conf['hidepages']   = '';               //Regexp for pages to be skipped from RSS, Search and Recent Changes
962649b1a4SAndreas Gohr$conf['send404']     = 0;                //Send a HTTP 404 status for non existing pages?
978b9da5a7SAndreas Gohr$conf['sitemap']     = 0;                //Create a google sitemap? How often? In days.
9831f1284dSjoe.lapp$conf['rss_type']    = 'rss1';           //type of RSS feed to provide, by default:
9931f1284dSjoe.lapp                                         //  'rss'  - RSS 0.91
10031f1284dSjoe.lapp                                         //  'rss1' - RSS 1.0
10131f1284dSjoe.lapp                                         //  'rss2' - RSS 2.0
10231f1284dSjoe.lapp                                         //  'atom' - Atom 0.3
10392e52d8dSjoe.lapp$conf['rss_linkto'] = 'diff';            //what page RSS entries link to:
10492e52d8dSjoe.lapp                                         //  'diff'    - page showing revision differences
10592e52d8dSjoe.lapp                                         //  'page'    - the revised page itself
10692e52d8dSjoe.lapp                                         //  'rev'     - page showing all revisions
10792e52d8dSjoe.lapp                                         //  'current' - most recent revision of page
108fbf82939SBen Coburn$conf['rss_update'] = 5*60;              //Update the RSS feed every n minutes (defaults to 5 minutes)
10971726d78SBen Coburn$conf['recent_days'] = 7;                //How many days of recent changes to keep. (days)
110a1716312SMarc Mayfield$conf['rss_show_summary'] = 1;           //Add revision summary to title? 0|1
111f3f0262cSandi
112f3f0262cSandi//Set target to use when creating links - leave empty for same window
113f3f0262cSandi$conf['target']['wiki']      = '';
114b7441779SAndreas Gohr$conf['target']['interwiki'] = '';
115b7441779SAndreas Gohr$conf['target']['extern']    = '';
116f3f0262cSandi$conf['target']['media']     = '';
117f3f0262cSandi$conf['target']['windows']   = '';
118f3f0262cSandi
11994de3b7aSAndreas Gohr//Proxy setup - if your Server needs a proxy to access the web set these
12094de3b7aSAndreas Gohr$conf['proxy']['host'] = '';
12194de3b7aSAndreas Gohr$conf['proxy']['port'] = '';
12294de3b7aSAndreas Gohr$conf['proxy']['user'] = '';
12394de3b7aSAndreas Gohr$conf['proxy']['pass'] = '';
124506fa893SAndreas Gohr$conf['proxy']['ssl']  = 0;
12594de3b7aSAndreas Gohr
1263dc3a5f1Sandi/* Safemode Hack */
127039e19f5STom Hoover
1283dc3a5f1Sandi$conf['safemodehack'] = 0;               //read http://wiki.splitbrain.org/wiki:safemodehack !
1293dc3a5f1Sandi$conf['ftp']['host'] = 'localhost';
1303dc3a5f1Sandi$conf['ftp']['port'] = '21';
1313dc3a5f1Sandi$conf['ftp']['user'] = 'user';
1323dc3a5f1Sandi$conf['ftp']['pass'] = 'password';
1333dc3a5f1Sandi$conf['ftp']['root'] = '/home/user/htdocs';
1343dc3a5f1Sandi
135d5b23302STom N Harris/* FIXME: delete when no longer needed */
136d5b23302STom N Harris$conf['test_indexer'] = 0;
137