User Tools

Site Tools


start:knowledge:personal:dokuwiki

<< Back

DokuWiki

Plugins

Name Description
Color Plugin 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 Easely copy code from code blocks
Note Add color coded notes
Move Move pages and automatically adjusts all links and media references

Manual Changes

Disable actions for guests

For instance, if you want to disable for guests Recent changes, Media Manager and Sitemap, in the file inc/confutils.php edit function actionOK():

Search:

  return !in_array($action,$disabled);

Replace to:

if(!empty($_SERVER['REMOTE_USER']))
  return !in_array($action,$disabled);
if(in_array($action, Array('recent', 'media', 'index'))) //array of actions to disable
  return false;
  else
    return !in_array($action,$disabled);
start/knowledge/personal/dokuwiki.txt · Last modified: 2024/07/30 12:59 by florian