Wikka Developer Blog

Fresh news from the Wikka Developer Team

How to design themes for WikkaWiki

with 14 comments

With the release of version 1.2, we introduced support for 100%-modular themes in WikkaWiki. We believe a wiki engine should not force you to use its default layout: the best wikis are those that can be modified to seamlessly run behind the scenes without betraying their presence or to match the look and feel of an existing website.

mozilla theme screenshotorange theme screenshot
pivwan theme screenshotbronzino theme screenshot

In this post we’ll guide you through the creation of a custom theme.
Read the rest of this entry »

Written by Dario

September 11th, 2009 at 10:38 pm

Wikka 1.2-p1 available

with 2 comments

A patch for WikkaWiki 1.2 (1.2-p1) has been released to fix some minor issues with the support of themes.
Changes on top of 1.2 are described on this page. We recommend installing 1.2-p1 if you experienced problems displaying themes with 1.2 (users potentially affected are those running on Windows servers and Apache servers with mod_rewrite enabled).

Written by Dario

September 8th, 2009 at 3:28 pm

Posted in Bugs, Patches, Releases

Tagged with , , , ,

Fixing a glitch with themes and mod_rewrite in 1.2

with 2 comments

If your wiki runs on Apache with rewrite_mode on and depending on your server configuration, you may have noticed some glitches with the display of themes. The kubrick theme, for one, doesn’t seem to correctly load the embedded graphics. The fix is simple: rewrite rules should be disabled in the templates folder. Simply create a file with the following content and save it as templates/.htaccess:

1
2
3
4
<ifmodule mod_rewrite.c>
        # turn on rewrite engine
        RewriteEngine off
</ifmodule>

The graphics called by the stylesheets of the themes should now be loaded. The same fix may need to be applied to plugins/templates if you are installing custom themes.

Written by Dario

September 5th, 2009 at 7:38 am

Wikka 1.2 release: Theme support and advanced table markup

with 13 comments

I am proud to announce the release of WikkaWiki 1.2–possibly the most important Wikka upgrade since years.

light, the new default theme in Wikka 1.2 Tormod's advanced table markup
Menu template filesNew default page layout

1.2 is a major release introducing new functionality such as: support for 100%-modular themes, a completely redesigned default layout, menu templates, an advanced table markup, among other enhancements. Read the rest of this entry »

Written by Dario

September 2nd, 2009 at 2:55 pm