In a message dated 6/16/03 11:35:03 AM Pacific Daylight Time,
[EMAIL PROTECTED] writes:
> >I tried a couple of those ideas.
> >
> >I put a BEGIN statement in the script I'm trying to open and
> >to my surprise
> >it's opened. I'm still getting Error: No such file or directory
> >
> >The script is very small and on a unix platform:
> >
> >#!/usr/bin/perl
> >use CGI;
> >my$q = CGI::new();
>
> I think you want my $q not my$q
>
> >print $q->header();
> >print "Trying to start socket
> ";
> >
> >exec("sendscript.pl");
> >print "Couldn't start sendscript.pl
> Error: $!\n";
>
> How about exec("..") or print "Couldn't start it $!";
> Since this will print an error no matter what.
>
> Also have youy tried system() or qx()?
>
> >
> >I guess as long as the sockets open I won't fuss over this
> >
>