DokuWiki 学习使用记录

本文为学习使用 DokuWiki 的过程记录包括基本使用、插件体验及所遇问题的解决。

安装

下载地址:https://www.dokuwiki.org/zh:install。推荐下载官方建议的 Stable 版本。
解压后打开目录下的 run.cmd,填写相关信息后安装完毕,将目录下的 install.php 文件删除。

更多安装相关详见官方文档:DokuWiki安装指南

解决中文文件名乱码问题

1.在 dokuwiki/conf/local.php 最后一行添加

1
$conf['fnencode'] = 'utf-8';

2.在 dokuwiki/inc/pageutils.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
27
28
29
30
31
32
function utf8_encodeFN($file,$safe=true){
global $conf;
if($conf['fnencode'] == 'utf-8') return $file;

if($safe && preg_match('#^[a-zA-Z0-9/_\-\.%]+$#',$file)){
return $file;
}

if($conf['fnencode'] == 'safe'){
return SafeFN::encode($file);
}

// 删除下面两行
- $file = urlencode($file);
- $file = str_replace('%2F','/',$file);

return $file;
}

function utf8_decodeFN($file){
global $conf;
if($conf['fnencode'] == 'utf-8') return $file;

if($conf['fnencode'] == 'safe'){
return SafeFN::decode($file);
}

// 删除下面一行
- return urldecode($file);
// 加上下面这行
+ return $file;
}
-------------------------- --------------------------

本文标题:DokuWiki 学习使用记录

文章作者:reman

发布时间:2022年11月02日 - 17:34:12

最后更新:2023年09月25日 - 23:21:39

原始链接:https://zcw-blog.top/posts/20221102a1/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请注明出处。