cgi_to_mod_perl manpage suggestion

2001-03-13 Thread Issac Goldstand
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. I just got around to playing with mod_perl after a considerable amount of time that I'd relied on mod_Cgi. First and foremost, I really, really, really love it and would have switched much sooner had someone simply explained to me the one

Re: to clarify (getting what was printed in PerlHandler)

2001-03-13 Thread JR Mayberry
I actually dont want to change whats outgoing -- I just want to know what it is.. - Original Message - From: "Ken Williams" [EMAIL PROTECTED] To: "JR Mayberry" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, March 12, 2001 7:20 PM Subject: Re: to clarify (getting what was printed

Re: [OT] Client Certificate Authentification module?

2001-03-13 Thread Gunther Birznieks
If you download our Perl objects @ http://www.extropia.com/development/webware2/webware2.html, I have an AuthManager::Certificate which implements client certificate authentication. Probably the best place to download the code for that is on the extropiaperl project at sourceforge if you want

Re: to clarify (getting what was printed in PerlHandler)

2001-03-13 Thread Matt Sergeant
On Tue, 13 Mar 2001, JR Mayberry wrote: I actually dont want to change whats outgoing -- I just want to know what it is.. And the answer remains the same. Apache::Filter. -- Matt/ /||** Founder and CTO ** ** http://axkit.com/ ** //||** AxKit.com Ltd ** ** XML

Re: to clarify (getting what was printed in PerlHandler)

2001-03-13 Thread JR Mayberry
It's not really as plug and play as I was looking for.. I'm surprised that theres no built in functionality to allow any of the post-handler phases to be able to retreive what was dumped out... oh well.. - Original Message - From: "Matt Sergeant" [EMAIL PROTECTED] To: "JR Mayberry"

Error Pages

2001-03-13 Thread Robert Landrum
I have set up a cgi script that will display an error message and send an email to the administrator and placed that into the httpd.conf file via ErrorDocument 500 /cgi-bin/bad.pl I have about 30 different "Apps" that are native mod perl modules (written from scratch, not cgi converts).

Re: to clarify (getting what was printed in PerlHandler)

2001-03-13 Thread Robert Landrum
Well, the first time someone downloads a 100MB file from your site, you'll understand why apache doesn't save what it sends to the browser. The other solution is to assemble your outout into some sort of scalar, then check it within your handler and save whatever it is you're looking for

Re: $r and Registry(NG)* scripts

2001-03-13 Thread Daniel
All scripts on site start with: use vars qw(%input $r); $r = Apache-request; This has worked fine...no complaints in log files...until I switched the handler from Registry to RegistryNG; Now I see occasional: Variable "$r" will not stay shared at /home/httpd/perl/daily-news.pl

Re: to clarify (getting what was printed in PerlHandler)

2001-03-13 Thread Ken Williams
[EMAIL PROTECTED] (JR Mayberry) wrote: It's not really as plug and play as I was looking for.. I'm surprised that theres no built in functionality to allow any of the post-handler phases to be able to retreive what was dumped out... If you think about it, it would be a terrible idea to allow

Re: to clarify (getting what was printed in PerlHandler)

2001-03-13 Thread JR Mayberry
It's only saving it up until that request is done with.. I put it in a pnote..works fine.. - Original Message - From: "Ken Williams" [EMAIL PROTECTED] To: "JR Mayberry" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, March 13, 2001 2:56 PM Subject: Re: to clarify (getting what

Re: [OT] Client Certificate Authentification module?

2001-03-13 Thread James G Smith
[EMAIL PROTECTED] wrote: I am looking for a module that will allow me to use Client Certificates to authenticate the users. I am pretty sure I have come accros this before, but I cannot find it anywhere. Anybody know where I can find this. I have seached CPAN for 'cert', 'authen' and

Handler without handler()

2001-03-13 Thread Gene Dascher
I have a handler that I want to contain all of my methods for access control, authentication and authorization. I have created the file with 3 different methods named access($$), authentication($$) and authorization($$). I have these methods set up thusly in the httpd.conf file: Directory

Re: Handler without handler()

2001-03-13 Thread Sean C. Brady
Gene Dascher wrote: I have a handler that I want to contain all of my methods for access control, authentication and authorization. I have created the file with 3 different methods named access($$), authentication($$) and authorization($$). I have these methods set up thusly in the

Re: Handler without handler()

2001-03-13 Thread Mike Cameron
I believe that you need to load your module first, either in a startup file or with PerlModule Me::MyHandler Gene Dascher wrote: I have a handler that I want to contain all of my methods for access control, authentication and authorization. I have created the file with 3 different methods

Re: $r and Registry(NG)* scripts

2001-03-13 Thread Stas Bekman
On Tue, 13 Mar 2001, Daniel wrote: All scripts on site start with: use vars qw(%input $r); $r = Apache-request; This has worked fine...no complaints in log files...until I switched the handler from Registry to RegistryNG; Now I see occasional: Variable "$r" will not stay

Re: cgi_to_mod_perl manpage suggestion

2001-03-13 Thread Perrin Harkins
On Tue, 13 Mar 2001, Issac Goldstand wrote: The only problem was the PerlSendHeaders option. The first fifty or so times that I read the manpages, I understood that PerlSendHeader On means that mod_perl will SEND HEADERS, and that off meant supply your own... Somehow I figured out

Re: cgi_to_mod_perl manpage suggestion

2001-03-13 Thread Andrew Ho
Hello, PHUm, you're getting me confused now, but PerlSendHeader On means that PHmod_perl WILL send headers. I recognize this confusion. Most recovering CGI programmers think that "PerlSendHeader On" means that you no longer have to do this in your CGI: print "Content-type: text/html\n\n";

Re: cgi_to_mod_perl manpage suggestion

2001-03-13 Thread Perrin Harkins
On Tue, 13 Mar 2001, Andrew Ho wrote: PHUm, you're getting me confused now, but PerlSendHeader On means that PHmod_perl WILL send headers. I recognize this confusion. Most recovering CGI programmers think that "PerlSendHeader On" means that you no longer have to do this in your CGI:

Re: [gsar@ActiveState.com: v5.6.1 trial2 is available]

2001-03-13 Thread Gurusamy Sarathy
On Tue, 13 Mar 2001 17:10:41 CST, Jarkko Hietaniemi wrote: sorry for not answering sooner. The suggested patch seems to work find with the development branch of Perl, and I believe Sarathy will apply the patch also to the maintenance branch. There is a change in behavior here that looks

cvs commit: modperl-2.0/src/modules/perl mod_perl.c modperl_util.c modperl_util.h

2001-03-13 Thread dougm
dougm 01/03/13 20:22:51 Modified:src/modules/perl mod_perl.c modperl_util.c modperl_util.h Log: add modperl_server_desc() function add more trace details when initializing the interpreter pool Revision ChangesPath 1.30 +25 -6

cvs commit: modperl-2.0/src/modules/perl modperl_interp.c

2001-03-13 Thread dougm
dougm 01/03/13 22:57:44 Modified:src/modules/perl modperl_interp.c Log: share selected Perl interpreter across sub-requests by default Revision ChangesPath 1.21 +10 -5 modperl-2.0/src/modules/perl/modperl_interp.c Index: modperl_interp.c