Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Apache::Registry and POSTs

by submersible_toaster (Chaplain)
on Jun 02, 2003 at 03:10 UTC ( [id://262292]=note: print w/replies, xml ) Need Help??


in reply to Apache::Registry and POSTs

How have you configured apache to call your CGI? If you are for example using Apache::Registry as a perl-handler then you might have more luck using the apache request object. Scripts launch by Apache::Registry get passed this as their first (subroutine) arg.

#!/usr/bin/perl my $request = shift; $request->send_http_header('text/plain'); $request->print( $request->content() );
Which I have not tested but should do the trick for you. Read up on the CPAN about Apache modules.

I can't believe it's not psellchecked

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-23 23:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found