Gordon Jackson wrote (to me privately): > > Here is a copy of the edited admin.pl file. Well, nothing wrong with it as far as I can see. But we should have understood what causes the problem out from your posting to the list. It seems to be related to an incomplete Perl installation. You posted this error message: TEST 4: perl syntax Can't locate lib.pm in @INC (@INC contains: /usr/lib/perl5/5.00502/i686- linux /usr/lib/perl5/5.00502 /usr/lib/perl5/site_perl/5.005/i686- linux /usr/lib/perl5/site_perl/5.005 .) at admin.pl line 4. BEGIN failed--compilation aborted at admin.pl line 4. The first lib in the command use lib 'lib'; is a call for a file called lib.pm, which should be installed in some of the directories listed in the error message (I'd guess it should be in /usr/lib/perl5/5.00502). Obviously lib.pm is not installed. You should fix it so that Perl becomes completely and correctly installed, including all the modules that are included in a standard Perl distribution. / Gunnar