blob: 74334812bb934c1f990a2226e285222da56af8dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<?php
/**
* This is an example of how a local.php coul look like.
* Simply copy the options you want to change from dokuwiki.php
* to this file and change them.
*
* When using the installer, a correct local.php file be generated for
* you automatically.
*/
$conf['title'] = 'Elgg Wiki'; //what to show in the title
$conf['basedir'] = ''; //absolute dir from serveroot - blank for autodetection
$conf['baseurl'] = ''; //URL to server including protocol - blank for autodetect
$conf['savedir'] = DOKU_ELGGDATA; //where to store all the files
$conf['useacl'] = 1; //Use Access Control Lists to restrict access?
$conf['disableactions'] = 'login,logout'; //comma separated list of actions to disable
$conf['updatecheck'] = 0; //automatically check for new releases?
// get language from elgg directly
$conf['lang'] = get_current_language();
$conf['superuser'] = '@root';
$conf['license'] = 'cc-by-sa'; //see conf/license.php
$conf['pluginmanager'] = 0;
$conf['plugin']['indexmenu']['skip_file']="/(sidebar)/i";
//$conf['superuser'] = 'joe';
/**
* The following options are usefull, if you use a MySQL
* database as autentication backend. Have a look into
* mysql.conf.php too and adjust the options to match
* your database installation.
*/
$conf['authtype'] = 'elgg';
//require_once ("mysql.conf.php");
|