downloaded the ssi counter tonite v1.1 and got an include error for the ubb_library.pl. I am using v5.46a (thanks to Allen). I don't know if anyone posted a fix for it but I couldn't find one so I went ahead and tried a few things.
The error occurs in the ubbcount.cgi
locate:
require "ubb_library.pl";
require "UltBB.setup";
require "Styles.file";
replace with:
eval {
($0 =~ m,(.*)/[^/]+,) && unshift (@INC, "$1"); # Get the script location: UNIX / or Windows /
($0 =~ m,(.*)\[^\]+,) && unshift (@INC, "$1"); # Get the script location: Windows
#substitute all require files here for the file
require "ubb_library.pl";
require "UltBB.setup";
require "Styles.file";
};
sorry if this is a repeat.
------------------
Well...THAT hack didn't work.. Gimme the next one!