In the "inc/functions.php" file it was trying to locate several things using \\ or \ when it shoulda been / (a few lines diff) which am guessing may work on a windows server (like who uses those anymore, hehe) but linux ones seem to bitch about it. Anyways change the following lines (1496, 1513, 1531, and 1560) so that instead of "\" for the 3 Snoopy.class.php references it reads "/" and for the "\\" tooltip/cache reference it reads "/" too. And this should fix things, :-)
EG lines 1496/1513 and 1531 should read:
- Code: Select all
require_once($addon['dir'] . 'inc/Snoopy.class.php');
And line 1560 should read:
- Code: Select all
$filename = $addon['dir'] . 'cache/'.$itemid.'-US-tooltip.html';
I tried this on a friends server and it worked great, not a problem after those 4 line changes. :-)
Enjoy, :-)