If you receive an error message which is similar to the following:
Software error:
Can't locate Archive/Zip.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi ......
Then your servers default installation of perl does not include the Perl module: Archive::Zip.
Please refer to this page for more info: http://www.idotcommunications.co.uk/site.php?page=Requirements
In the short term, if you open up the Manager.pm script and refer to lines 1-12:
1 2 3 4 5 6 7 8 9 10 11 12
|
package Manager; use strict; use Fcntl qw(:DEFAULT :flock); use Data::Dumper; use base "IDC"; use Archive::Tar; use Compress::Zlib; use Cwd; use File::Copy; use File::Path; use File::Find; use Archive::Zip;
|
and then comment out (#) line: 12
e.g.
1 2 3 4 5 6 7 8 9 10 11 12
|
package Manager; use strict; use Fcntl qw(:DEFAULT :flock); use Data::Dumper; use base "IDC"; use Archive::Tar; use Compress::Zlib; use Cwd; use File::Copy; use File::Path; use File::Find; #use Archive::Zip;
|
before saving and re-uploading the Manager.pm script, the File Manager will now run without the Zip function until your host installs the missing module.
© Copyright i Dot Communications