Hi all, I have a CGI script running on a web server that works fine, until I add the Archive::Extract module. Then I get this error in the browser when loading the script:
dmake could not be found on the PATH. Please invoke it using the full
+pathname:
C:\Perl\site\bin\dmake.exe
or put the Perl\site\bin directory on the PATH with:
path C:\Perl\site\bin;%PATH%
C:\Perl\site\bin\dmake.exe is indeed in my path (first thing, in fact). Any idea what's causing this problem? I also have Archive::Zip which isn't causing the problem. Here's the top of my script:
#! /Perl/bin/perl
use CGI;
use CGI::Pretty;
use CGI::Carp qw( fatalsToBrowser );
use POSIX;
use File::Basename;
use File::Copy;
use File::Path;
use File::Find;
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
use Archive::Extract;
thanks