With Perl modules that are only Perl code, it is usually OK. When in doubt, try it.
Of special note are modules that say they are pure-Perl. This means that the module is a replacement for a module using C, XS, or something similar, so it is often intended to be uploaded without installing. | [reply] |
My host won't install modules the right way so I have to upload them myself. I've got CGI::Session with only uploading it in a custom lib. But somehow, when using the File driver for session storage I was running into errors. But I'm almost sure it had something to do with running my website under mod_perl and not plain CGI.
PS: Don't forget to clean your sessions when they expire :-). | [reply] |
Recent versions of CGI::Session use a recent version of Scalar::Utils.
If your hoster doesn't have the appropriate S::U you'll run into the sort of problems Htbaa mentions. I had similar problems myself. | [reply] |