Home
last modified time | relevance | path

Searched refs:conf (Results 1 – 25 of 122) sorted by path

12345

/dokuwiki/
H A D.htaccess.dist22 ## $conf['userewrite'] = 1 - not needed for rewrite mode 2
H A Ddoku.php104 if ($conf['allowdebug'] && $ACT == 'debug') {
112 ($conf['send404'] || preg_match('/^(robots\.txt|sitemap\.xml(\.gz)?|favicon\.ico|crossdomain\.xml)$/', $ID)) &&
119 if ($conf['breadcrumbs']) breadcrumbs();
H A Dfeed.php9 * @global array $conf
48 $depends['age'] = $conf['rss_update'];
59 if ($conf['allowdebug']) header("X-CacheUsed: $cache->cache");
/dokuwiki/bin/
H A Ddwpage.php207 global $conf;
224 if (stristr(realpath(dirname($localfile)), (string) realpath($conf['datadir'])) !== false) {
H A Dindexer.php67 global $conf;
70 search($data, $conf['datadir'], 'search_allpages', ['skipacl' => true]);
H A Dwantedpages.php133 global $conf;
134 $trunclen = strlen($conf['datadir'] . ':');
165 global $conf;
170 if ($ins[0] == 'internallink' || ($conf['camelcase'] && $ins[0] == 'camelcaselink')) {
/dokuwiki/conf/
H A D.htaccess1 ## no access to the conf directory
H A Ddokuwiki.php16 $conf['title'] = 'DokuWiki'; //what to show in the title
17 $conf['start'] = 'start'; //name of start page
18 $conf['lang'] = 'en'; //your language
19 $conf['template'] = 'dokuwiki'; //see lib/tpl directory
20 $conf['tagline'] = ''; //tagline in header (if template supports it)
21 $conf['sidebar'] = 'sidebar'; //name of sidebar in root namespace (if template supports it)
22 $conf['license'] = 'cc-by-nc-sa'; //see conf/license.php
23 $conf['savedir'] = './data'; //where to store all the files
24 $conf['basedi
[all...]
H A Dlicense.php8 if(empty($LC)) $LC = empty($conf['lang']) ? 'en' : $conf['lang'];
H A Dlocal.php.dist12 //$conf['title'] = 'My Wiki'; //what to show in the title
14 //$conf['useacl'] = 1; //Use Access Control Lists to restrict access?
15 //$conf['superuser'] = 'joe';
H A Dmysql.conf.php.example26 $conf['plugin']['authmysql']['server'] = '';
27 $conf['plugin']['authmysql']['user'] = '';
28 $conf['plugin']['authmysql']['password'] = '';
29 $conf['plugin']['authmysql']['database'] = '';
34 $conf['plugin']['authmysql']['debug'] = 0;
41 $conf['plugin']['authmysql']['forwardClearPass'] = 0;
48 $conf['plugin']['authmysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", "usergroup", "usergroup AS ug");
66 $conf['plugin']['authmysql']['checkPass'] = "SELECT pass
85 $conf['plugin']['authmysql']['getUserInfo'] = "SELECT pass, CONCAT(firstname,' ',lastname) AS name, email AS mail
97 $conf['plugi
[all...]
/dokuwiki/data/
H A Ddeleted.files114 lib/plugins/authmysql/conf/default.php
115 lib/plugins/authmysql/conf/metadata.php
180 lib/plugins/authpgsql/conf/default.php
181 lib/plugins/authpgsql/conf/metadata.php
696 conf/words.aspell.dist
748 conf/msg
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt86 * For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http://kb.mozillazine.org/Links_to_local_pages_do_not_work|Mozilla Knowledge Base]]. However, there will still be a JavaScript warning about trying to open a Windows Share. To remove this warning (for all users), put the following line in ''conf/lang/en/lang.php'' (more details at [[doku>localization#changing_some_localized_texts_and_strings_in_your_installation|localization]]): <code - conf/lang/en/lang.php>
/dokuwiki/inc/Action/
H A DAbstractAclAction.php21 global $conf;
23 if (!$conf['useacl']) throw new ActionAclRequiredException();
H A DExport.php42 global $conf;
61 $pre .= '<html lang="' . $conf['lang'] . '" dir="' . $lang['direction'] . '">' . DOKU_LF;
H A DLocked.php39 global $conf;
44 $expire = dformat($locktime + $conf['locktime']);
45 $min = round(($conf['locktime'] - (time() - $locktime)) / 60);
H A DRegister.php33 global $conf;
34 if (isset($conf['openregister']) && !$conf['openregister']) throw new ActionDisabledException();
H A DResendpwd.php33 global $conf;
34 if (isset($conf['resendpasswd']) && !$conf['resendpasswd'])
70 global $conf;
85 $tfile = $conf['cachedir'] . '/' . $token[0] . '/' . $token . '.pwauth';
106 if (!$conf['autopasswd']) { // we let the user choose a password
157 $tfile = $conf['cachedir'] . '/' . $token[0] . '/' . $token . '.pwauth';
H A DSearch.php38 global $QUERY, $ID, $conf, $INPUT;
41 if ($ID !== $conf['start'] && !$INPUT->has('q')) {
83 global $conf, $INPUT, $QUERY, $ID;
93 if ($conf['search_nslimit'] > 0) {
96 $ns = implode(':', array_slice($nsParts, 0, $conf['search_nslimit']));
102 if ($conf['search_fragment'] !== 'exact') {
120 global $conf;
122 if ($conf['search_fragment'] === 'starts_with') {
125 if ($conf['search_fragment'] === 'ends_with') {
H A DSitemap.php33 global $conf;
35 if ($conf['sitemap'] < 1 || !is_numeric($conf['sitemap'])) {
H A DSubscribe.php32 global $conf;
33 if (isset($conf['subscribers']) && !$conf['subscribers']) throw new ActionDisabledException();
/dokuwiki/inc/
H A DActionRouter.php43 global $conf;
45 $this->disabled = explode(',', $conf['disableactions']);
H A DAjax.php192 global $conf;
202 search($data, $conf['mediadir'], 'search_index', ['nofiles' => true], $dir);
325 global $conf;
335 search($data, $conf['datadir'], 'search_index', ['ns' => $ns], $dir);
350 global $conf;
371 if ($conf['useheading'] == '1' || $conf['useheading'] == 'content') {
401 'sneakyacl' => $conf['sneaky_index']
405 search($data, $conf['datadir'], 'search_universal', $opts, $nsd);
/dokuwiki/inc/Cache/
H A DCache.php196 global $conf;
200 if (!$conf['allowdebug']) {
205 $file = $conf['cachedir'] . '/cache_stats.txt';
H A DCacheRenderer.php17 global $conf;
35 if ($this->_time >= @filemtime($conf['cachedir'] . '/purgefile')) {
60 global $conf;
65 if ($conf['cachetime'] == -1) {
68 } elseif ($conf['cachetime'] > 0) {
70 min($this->depends['age'], $conf['cachetime']) : $conf['cachetime'];

12345