After running [index] for the first time on my wiki I saw each file twice. The reason was that on our UNIX server we are using a program for Macintosh access wich generates .rsrc folders in each folder.
Similar problems could arise with .pics folders generated by some graphics programs.
You can solve that problem very easily by just editing two lines in your wiki.pl:
sub GenerateAllPagesList { ... # next if (($dir eq '.') || ($dir eq '..')); next if substr( $dir, 0, 1) eq '.'; ... # next if (($id eq '.') || ($id eq '..')); next if substr( $id, 0, 1) eq '.'; ... }
Contributors: DavidAndel, SunirShah, JoshJore?