In principal, as this is a pure perl module, you could just copy the IxHash.pm file into a lib/Tie directory, say under where your CGI programs are located, and then add the location to your @INC with:
use lib './lib';
in your programs. On some platforms you may be forced to give the full path to the 'lib' directory as the notion of '.' might be different for a CGI program.
/J\ | [reply] [d/l] [select] |
Then you can probably get away with grabbing the source, changing the package declaration to MyTieIxHash or something, and uploading to MyTieIxHash.pm, and then use tie %hash, 'MyTieIxHash';. YMMV.
Update: Ah, I didn't see that you can create directories. In that case, create "Tie" directory, put "IxHash.pm" in it, add "use lib '.'" to your script, and you should be good to go.
| [reply] [d/l] |