Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Calling external programs via cgi on win32

by JamesNC (Chaplain)
on Jul 02, 2004 at 12:42 UTC ( [id://371381]=note: print w/replies, xml ) Need Help??


in reply to Calling external programs via cgi on win32

In addition to the other comments( of which I tend to agree that it is a permissions issue for sure!). Check Apache's logs for errors. Also, I don't know if you are use CGI::Carp or not, but that helps to spit errors out to the browser when things go wrong.
I would also try writing a simple test case:
use CGI qw(:standard); my $cgi = CGI->new(); print $cgi->header; print $cgi->start_html; my $rv = `set `; # see your environment print $cgi->p( $rv ); print $cgi->end_html;

JamesNC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://371381]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-25 20:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found