in reply to CGI::Session autoload failure

It sounds like somewhere in your code you are calling the method 'expired' on a CGI::Session object. This is not a valid method call. The reason you are not getting a standard perl error message is because CGI::Session uses AutoLoader to load less frequently used functions. 'expire' and 'expires' are two valid methods that are autoloaded on demand, and hence you found the files expire.al and expires.al. See the perldocs for AutoLoader for more info on how it works.

-Cees

Replies are listed 'Best First'.
Re: Re: CGI::Session autoload failure
by JESii (Novice) on Jan 10, 2004 at 00:23 UTC

    Boy... did I overanalyze that problem :)

    You're right -- I had used the wrong method. Thanks very much!