1<?php 2/** 3 * This is an example of how a local.php coul look like. 4 * Simply copy the options you want to change from dokuwiki.php 5 * to this file and change them. 6 * 7 * When using the installer, a correct local.php file be generated for 8 * you automatically. 9 */ 10 11 12//$conf['title'] = 'My Wiki'; //what to show in the title 13 14//$conf['useacl'] = 1; //Use Access Control Lists to restrict access? 15//$conf['superuser'] = 'joe'; 16 17/** 18 * The following options are usefull, if you use a MySQL 19 * database as autentication backend. Have a look into 20 * mysql.conf.php too and adjust the options to match 21 * your database installation. 22 */ 23//$conf['authtype'] = 'mysql'; 24//require_once ("mysql.conf.php"); 25 26 27