2020-03-01 11:28:28 +01:00
|
|
|
<?php /* Configuration file for LionWiki. */
|
2020-03-27 11:26:22 +01:00
|
|
|
$WIKI_TITLE = '__YNH_LABEL__'; // name of the site
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
// SHA1 hash of password. If empty (or commented out), no password is required
|
|
|
|
|
2020-03-01 13:21:59 +01:00
|
|
|
$PASSWORD = sha1("__YNH_PASSWORD__");
|
|
|
|
$Admin["PASSWORD"] = sha1("__YNH_PASSWORD__");
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
//$TEMPLATE = 'templates/dandelion.html'; // presentation template
|
|
|
|
//$TEMPLATE = 'templates/fravashyo.html';
|
|
|
|
//$TEMPLATE = 'templates/sissou.html';
|
|
|
|
$TEMPLATE = 'templates/red.html';
|
|
|
|
//$TEMPLATE = 'templates/blazekiss.html';
|
|
|
|
$TEMPLATE = 'templates/minimaxing.html';
|
|
|
|
//$TEMPLATE = 'templates/txt2tags.html';
|
|
|
|
//$TEMPLATE = 'templates/skeleton.html'; // doesn't work well yet
|
|
|
|
//$TEMPLATE = 'templates/bootstrap.html';
|
|
|
|
//$TEMPLATE = 'templates/ElectricObsidian/ElectricObsidian.html';
|
|
|
|
//$TEMPLATE = 'templates/literature.html';
|
2020-03-01 12:53:03 +01:00
|
|
|
//$TEMPLATE = 'templates/minimal.html';
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
// if true, you need to fill password for reading pages too
|
|
|
|
// before setting to true, read http://lionwiki.0o.cz/index.php?page=UserGuide%3A+How+to+use+PROTECTED_READ
|
|
|
|
$PROTECTED_READ = false;
|
|
|
|
|
|
|
|
$NO_HTML = true; // XSS protection
|
|
|
|
|
|
|
|
$START_PAGE = 'main'; // Which page should be default (start page)?
|
|
|
|
|
|
|
|
|
|
|
|
// if needed (if autodetection doesn't work), force language
|
|
|
|
//$LANG = fr;
|
2020-03-01 13:21:59 +01:00
|
|
|
$LANG = __YNH_LANG__;
|