1             DokuKiwix - Version 0.3 "Final destination"
2                                      Yann Hamon - 2007-06-30
3
4
51: Install the plugin with the plugin manager, in the admin section.
62: Make sure the directory /lib/tpl/dokukiwix/archive is writable by the webserver.
73: Get the "offline" template, and unzip it in /lib/tpl/
84: In inc/common.php:
9
10AFTER:
11function wl($id='',$more='',$abs=false,$sep='&'){
12  global $conf;
13ADD:
14  if (defined("dokukiwix_plugin")) return dokukiwix_wl($id, $more, $abs, $sep);
15
16AFTER:
17function ml($id='',$more='',$direct=true,$sep='&'){
18  global $conf;
19ADD:
20  if (defined("dokukiwix_plugin")) return dokukiwix_ml($id,$more,$direct, $sep);
21
225: Check the settings of your PHP: if you have huge pages or pages that link to several big external pictures, you may need to raise the timeout limit or the maximal memory allowed.
23
24
25You are done! Start the script from the admin panel in dokuwiki. Output will go to /lib/plugins/dokukiwix/archive/%DATE%.
26
27
28
29
30