File-based open-source wiki software, no database required, plain-text storage, extensible with plugins. Accessible and editable from anywhere you have access to a browser!
Templates
| Name |
|---|
| MindTheDark |
Plugins
| Name | Description |
|---|---|
| Color | Write colored text in DokuWiki |
| EditTable | Visual table editing and inserting interface |
| nspages | Automatically generate a custom list of pages in your wiki or namespace |
| Wrap | Probably the most useful formatting plugin — easily add columns, notes, divs, etc. |
| DW2PDF | Export wiki pages as PDFs |
| Copy Code | Easily copy code from code blocks |
| Note | Add color coded notes |
| Move | Move pages and automatically adjusts all links and media references |
| Captcha | CAPTCHA Plugin |
| Upgrade | Upgrade Plugin |
| Translation | Translation Plugin |
| Gallery | Gallery Plugin |
| Folded | Folded Plugin |
Manual Changes
Change favicon
To change the favicon, go to $DokuWiki/lib/tpl/dokuwiki/images and replace favicon.ico.
Disable actions for guests
If you want to disable Recent changes, Media Manager and Sitemap for guests, edit inc/confutils.php function actionOK():
Search:
php
return !in_array($action,$disabled);Replace with:
php
if(!empty($_SERVER['REMOTE_USER']))
return !in_array($action,$disabled);
if(in_array($action, Array('recent', 'media', 'index')))
return false;
else
return !in_array($action,$disabled);Make logo update with MindTheDark toggle
Change the following files:
$DokuWiki\lib\tpl\mindthedark\tpl_header.php$DokuWiki\lib\tpl\mindthedark\script.js
Cheatsheet
