A file called "addon.php" needs to be added to the root directory of Dragonfly with the following contents:
- Code: Select all
<?php
require_once 'HTTP.php';
$uri = $_SERVER[REQUEST_URI];
$old = "/addon.php?";
$new = "/index.php?name=WoWRosterDF&file=addon&";
$uri = str_replace($old, $new, $uri);
HTTP::redirect($uri);
?>
With this fix, I was able to use all of the addons that I wanted for my site. I hope you have the same experience.