Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
internet:dokuwiki [2006/12/14 02:45] cyril |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Dokuwiki ====== | ||
- | Dokuwiki is the wiki engine I am using. It seemed the nicer, more complete and easier to use to me. | ||
- | |||
- | ===== Have it working on free.fr ===== | ||
- | |||
- | There was some problems to have it working on my host Free. | ||
- | |||
- | First you have to create a '' | ||
- | |||
- | Then there is a problem with locks. Indeed Dokuwiki use folders to store locks, but Free doesn' | ||
- | < | ||
- | Fatal error : mkdir(/ | ||
- | [function.mkdir] : File exists in / | ||
- | </ | ||
- | |||
- | It seems that there are several solutions, such as disabling the locks, disabling '' | ||
- | <code php> | ||
- | if( !is_dir($lockDir)) { $locked = @mkdir($lockDir, | ||
- | </ | ||
- | |||
- | ===== The sidebar ===== | ||
- | |||
- | One bottleneck of Dokuwiki in the standard version is navigation. | ||
- | |||
- | There is a template '' | ||
- | |||
- | You just have to copy the content of the archive in '' | ||
- | <code php> | ||
- | $conf[' | ||
- | </ | ||
- | |||
- | You can change some options in '' | ||
- | |||
- | |||
- | ===== Disabling some automatic conversions | ||
- | |||
- | In particular if you use to write C/C++ code, you can find annoying that Dokuwiki replaced ''<<'' | ||
- | |||
- | You can do that by commenting out the lines in '' |