http://www.perlmonks.org?node_id=98593


in reply to Re: Re: a quick stab at a public links page
in thread a quick stab at a public links page

   While not certain, I suspect the server may have an older version of CGI.pm installed. Perhaps a fellow monk knows when Vars was added to CGI.pm. If you can get a look at the CGI.pm source on your server, search for the Vars subroutine. You should be able to determine the version of CGI by printing $CGI::VERSION. Install the newest version from CPAN if you can. Try a Super Search on Vars

If all else fails you could bother the author, but wait a few days for a reply here first.


HTH,
Charles K. Clarkson

Replies are listed 'Best First'.
Re4: a quick stab at a public links page
by pmas (Hermit) on Jul 21, 2001 at 08:57 UTC
    Try to print version of CGI on your server, add:
     print $CGI::VERSION;
    And then compare version you found as installed on server with version you expected.
    Exactly this happened to me with $query->Dump() function, so now I know... ;)

    pmas
    To make errors is human. But to make million errors per second, you need a computer.