This is an old revision of the document!
The help server is built with DokuWiki. At the moment, all admin help views are served from this server. At a later date, I plan to migrate all site help views to the help server as well.
There are a few core hacks required to make this work as a help server, but they are simple and thus easy to maintain, even after an update of DokuWiki or any of the extensions.
// include('tpl_header.php');
// include('tpl_footer.php');
// return $tplCookie; if ($_SERVER['REMOTE_USER'] == 'admin-user') return 'default-template';
if (!pageinfo()['exists']) {
$view = explode(':', $ID);
if (in_array($view[0], array('de', 'fr', 'ko', 'th'))) {
$ID = 'en:'.$view[1];
$INPUT->set('id', $ID);
}
}
'https://your.wiki.server/doku.php?id={langcode}:{keyref}'
JToolbarHelper::help('view', true);
https://your.wiki.server/doku.php?id=en:view