-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
26 lines (26 loc) · 1.57 KB
/
config.php
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
<?php
$arrUserOptions = array(
'title' => 'Quiki', // Title of the page to be shown in header and tab
'template' => 'lib/template.php', // Rendering file
'pagesDir' => 'pages', // Directory where the wiki page lives
'pagesSuffix' => '.html', // File extension
'historyDir' => 'history', // Backup folder
'home' => 'Home', // Homepage file (without extension if pagesSuffix is not empty)
'delete' => 1, // Enable deleting files (keep backups)
'history' => 1, // Enable history feature (backups on save)
'debug' => 0, // Application debug
'enableUserDebug' => 0, // Enable debug by querystring, e.g.: "http://domain/?debug=1"
'additionalCSShref' => array( // Add custom CSS files to the template head
// 'http://domain.tld/custom.css', // example of a remote CSS file
// '/lib/custom-layout.css' // example of a local CSS file (pay attention to the absolute path)
),
'additionalJSsrc' => array( // Add custom Javascript files to the template head
// 'http://domain.tld/library.js', // example of a remote Javascript file
// '/lib/library.js' // example of a local Javascript file (pay attention to the absolute path)
)
);
if(0){
// Options for using file extensions (allow opening another extensions than the suffix)
$arrOptions['pagesSuffix'] = '';
$arrOptions['home'] = 'home.html';
}