This is what that gets me:

Error Type:
PerlScript Error (0x80004005)
Global symbol "$Server" requires explicit package name 



>     Sounds like perl is not starting automatically. Try this:

>     my $file_path   = $Server->MapPath( "/ASPtoPerl/MakeFile.pl" );
>     my $exit_status = system_call_test( "perl $file_path" ) / 256;


>     This calls the perl.exe directly. If you don't have perl.exe
> in your servers path, you'll need to complete path to it:

>     my $exit_status = system_call_test( "c:/perl/bin/perl.exe $file_path" )
> / 256;

>     Or something like that.


>     If this doesn't work, show us what prints to the browser.


> HTH,

> Charles K. Clarkson



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to