I'm currently messing with another approach to this hackfest: Buffer all the output from Dokuwiki, inject the <head>…</head> into Wordpress, cut everything besides <body>…</body> out of Dokuwiki.
The wiki you're currently seeing is a version of Dokuwiki hacked in to a static wordpress page. This page documents the changes necessary to integrate Dokuwiki
The project is at a preliminary stage but will be given a proper release with the SpaceStack project.
You will have to modify the CSS of the dokuwiki theme to suit your own theme. Firebug is useful here. Also the UNIX 'find' command is useful for searching through the CSS and HTML files, e.g.
find /path/to/091labs/theme -exec grep -H "mysearchstring" {} \;
Ok ok, I promise it will be easier when release day comes!
1. Both wordpress and Dokuwiki have functions called “is_ssl”, so we'll change the Dokuwiki one:
Search for: is_ssl Replace all with: is_ssl2
Search for: is_ssl Replace all with: is_ssl2
Integrate Dokuwiki with your Wordpress auth as described here.
Both Wordpress and Dokuwiki will escape your apostrophes and quotes, so we need to
wp_magic_quotes();
if (!$_COOKIE[DokuWiki]) {
wp_magic_quotes();
}