WikkaWiki

Update: March 19th, 2010
  1. Download the latest version here.
  2. Unzip the contents and upload the wowhead directory to the base directory of your WikkaWiki installation.
  3. Point your browser to http://yoursite.url/wowhead/install/ and complete the installation procedure.
  4. 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.
  5. 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.
  6. That's it, you're done!
TOP