Last month, I wrote a phpBB authentication module for MediaWiki. However, that's
not the only wiki software out there, and another one I've come across is
DokuWiki. Unlike MediaWiki, it uses
file storage by default instead of requiring a database, which might make it
an alternative for small, portable stuff.
Anyway, to install it, you'll need to do the following:
- Download the source Here
- Unpack this into the directory you've installed DokuWiki
- Edit your
conf/local.php to include the following:
$conf['authtype'] = 'phpbb';
// Change this to where you've installed phpBB
$conf['phpbb']['path'] = '../forum/';
// Important setting - this will disable
// dokuwiki's UTF8 functions and use phpbb's instead
define('NO_UTF8',true);
The standard phpBB group names are available for ACL authentication. For an example conf/acl.auth.php...
# Moderators have full access
* @GLOBAL_MODERATORS 8
# Registered users have read access
* @REGISTERED 1