> 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<BR>";
> 
> exec("sendscript.pl");
> print "Couldn't start sendscript.pl <BR>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
> 

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to