WikkaWiki
Update: March 19th, 2010
- Download the latest version here.
- Unzip the contents and upload the wowhead directory to the base directory of your WikkaWiki installation.
- Point your browser to http://yoursite.url/wowhead/install/ and complete the installation procedure.
- Open libs/Wakka.class.php
- Find:
$content_body = $this->Method($this->method); print($this->Header().$content_body.$this->Footer());
After:$content_body = $this->Method($this->method);
Add:if ($this->method != 'edit') { require_once('wowhead/parse.php'); $content_body = whp_parse($content_body); }
- Save and close Wakka.class.php and reupload to your site.
- Find:
- Open templates/header.php
- Find:
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
After Add:<!-- Wowhead Item Links --> <link href="./wowhead/css/wowhead.css" rel="stylesheet" type="text/css" /> <script src="http://www.wowhead.com/widgets/power.js"></script> <link href="./wowhead/css/armory.css" rel="stylesheet" type="text/css" /> <script src="./wowhead/js/armory.js.php" type="text/javascript"></script>
- Save and close header.php and reupload to your site.
- Find:
- That's it, you're done!