If you're new here and like what you read, please subscribe to my blog feed or sign up for free email updates. Thanks for visiting!
Enter your email address to subscribe:

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/

/3rdparty/plugins/wikkaedit/
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" />

<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.

This post has no comment. Add your own!