in reply to Re^2: Archive::Zip Compaitibility Issues??
in thread Archive::Zip Compaitibility Issues??

So you have the module Archive:Zip... though perhaps your module is too old. You should try to load it with the tags to import. On the command line, try
perl -MArchive::Zip=:ERROR_CODES,:CONSTANTS -e1
or just one of them, if it fails with both.

If that doesn't work, try upgrading the module. You could ask for the current version first:

perl -MArchive::Zip -le "print $Archive::Zip::VERSION"
(Windows quotes)

and check on CPAN if that version supports these tags, to see if that would likely fix it.