Skip to content
Return to Knowledge

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!

PlatformWindows, macOS, Linux
LanguagePHP

Templates

Name
MindTheDark

Plugins

NameDescription
ColorWrite colored text in DokuWiki
EditTableVisual table editing and inserting interface
nspagesAutomatically generate a custom list of pages in your wiki or namespace
WrapProbably the most useful formatting plugin — easily add columns, notes, divs, etc.
DW2PDFExport wiki pages as PDFs
Copy CodeEasily copy code from code blocks
NoteAdd color coded notes
MoveMove pages and automatically adjusts all links and media references
CaptchaCAPTCHA Plugin
UpgradeUpgrade Plugin
TranslationTranslation Plugin
GalleryGallery Plugin
FoldedFolded 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

DokuWiki syntax cheatsheet

Home · Hobi · Blog
Made with ❤️ in