Some notes on the use of WikkaWiki at 110mb.com (box 4) with htaccess support:
1. 110mb.com seems to not include in the unzipping the .htaccess files which is needed by WikkaWiki. You have to manually upload .htaccess files to the following directories:
templates/<template>/css
templates/<template>/images
images/
(If you use more than one template, you have to upload the default .htaccess files for each template folder. If your template uses JS files, include the templates/<template>/js folder.
The .htaccess files for these folders consists of the following lines:
<IfModule mod_rewrite.c>
RewriteEngine off
</IfModule>
UPDATE: To be able to see the editing buttons, also upload same htaccess file to /3rdparty/plugins/wikkaedit/
2. WikkaWiki will not be able to detect htaccess support upon installation. You have to select "Rewrite mode" yourself (check it) and change the "Base URL" yourself:In the Base URL, you have to remove "wikka.php?wakka=".
3. WikkaWiki's favicon could not be fixed by simply overwriting the favicon.ico file in the templates directory. The simplest way to fix this, in my opinion, is to just use an absolute URL for the href value in the shortcut icon link. You have to go to the templates folder and look for the header.php file. Change the following two lines:
<link rel="icon" href="<?php echo $this->GetThemePath('/') ?>/images/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="<?php echo $this->GetThemePath('/') ?>/images/favicon.ico" type="image/x-icon" />
into:
<link rel="icon" href="REPLACE_WITH_ABSOLUTE_URL" type="image/x-icon" />
<link rel="shortcut icon" href="REPLACE_WITH_ABSOLUTE_URL" type="image/x-icon" />
Thus mine looked like:
<link rel="icon" href="http://i793.photobucket.com/albums/yy212/islesv/islesv-1.png" type="image/x-icon" />
<link rel="shortcut icon" href="http://i793.photobucket.com/albums/yy212/islesv/islesv-1.png" type="image/x-icon" />
The PhotoBucket file is the same favicon for my personal blog at blog.islesv.net.

