Re: mod perl and apache with ssl and openssl

2002-09-25 Thread Michael Robinton
On Tue, 24 Sep 2002, Allan P. Magmanlac wrote: > Hello, > >Can anyone advise me on how to build > apache server with ssl and openssl and > using mod perl. > > this is how I do it WITHOUT mod perl support > cd to modssl soure directory and then run the following command > ./configure \ >

Passing data from ConnectionHandler to a ProtocolHandler ..

2002-09-25 Thread Sylbert L
Hi, I need to modify the request object before it is handed over to a protocol handler. I'm using 2.0, so suppose I implement a Connection Handler, within which i read from the socket directly .. modify the data read, now how do I pass on this modified data to the Protocol Handler ? Tx

RE: mod perl and apache with ssl and openssl

2002-09-25 Thread FFabrizio
> Can anyone advise me on how to build >apache server with ssl and openssl and >using mod perl. It's right there in the user's guide. http://perl.apache.org/docs/1.0/guide/install.html#mod_perl_and_mod_ssl___op enssl_ -Fran

Re: RedHat RPM for apache+mod_perl?

2002-09-25 Thread Aaron Johnson
On Wed, 2002-09-25 at 18:11, Dave Rolsky wrote: > Has anyone here come up with an RPM for apache+mod_perl, with the > following caveats: > I use Apache ToolBox to get all these items and have been very pleased with. It allows you the option of creating a RPM as well, so if that part works for y

Help with install

2002-09-25 Thread Jim Kipp
Hi I am totally new to modperl, in fact i have not even installed it yet. i want to install Mod perl 2.0 with Apache 2.0.42. I am not sure i understand the perl preReqs in the install docs. I have perl 5.6.1 without thread support. Am I good to go or do I need to build perl again. Also is what is

ANNOUNCE: Bricolage 1.4.1

2002-09-25 Thread David Wheeler
The Bricolage team would like to announce the release of Bricolage 1.4.1. This is a maintenance release with many bug fixes. All users of earlier versions of Bricolage are strongly encouraged to upgrade. Bricolage is a full-featured, enterprise-class content management and publishing system. It o

RedHat RPM for apache+mod_perl?

2002-09-25 Thread Dave Rolsky
Has anyone here come up with an RPM for apache+mod_perl, with the following caveats: 1. mod_perl is statically compiled 2. I don't want SSL. This will be backend server. Only the frontend needs SSL. 3. can co-exist with a non-mod_perl Apache on the same system, meaning that it has its own con

RE: Documentation for Apache::exit()?

2002-09-25 Thread Kyle Oppenheim
> > There are a few performance penalties when using Apache::Registry: > > > > * Scripts are compiled at first request instead of server start > unless you > > use something like Apache::RegistryLoader. So, the first > request per child > > will be a little bit slower and you don't get to share m

Re: $r->content

2002-09-25 Thread Rodney Broom
From: Geoffrey Young <[EMAIL PROTECTED]> GY> I didn't think that was what he was asking about. getting the POST GY> data from the main request in a subrequest is generally easy with GY> Apache::Request: Oops, you're right. I was thinking that Mark (jump in any time) needed to keep things in

Re: $r->content

2002-09-25 Thread Geoffrey Young
Rodney Broom wrote: > MC> > Presently I get all the incoming parameters via > Apache::Request and MC> > append to the URL before redirecting but > this is not ideal as I?d like MC> > to spit the modified parameters > out in a POST. Can anyone give me any MC> > advice? > > GY> see GY> > ht

Re: $r->content

2002-09-25 Thread Rodney Broom
MC> > Presently I get all the incoming parameters via Apache::Request and MC> > append to the URL before redirecting but this is not ideal as I?d like MC> > to spit the modified parameters out in a POST. Can anyone give me any MC> > advice? GY> see GY> http://perl.apache.org/docs/1.0/guide/sni

Re: $r->content

2002-09-25 Thread Geoffrey Young
> Presently I get all the incoming parameters via Apache::Request and > append to the URL before redirecting but this is not ideal as I?d like > to spit the modified parameters out in a POST. Can anyone give me any > advice? see http://perl.apache.org/docs/1.0/guide/snippets.html#Redirecting

$r->content

2002-09-25 Thread Mark Cance
Title: $r->content I’m trying to read some posted data, modify it and then redirect request inc the modified data. Something like; my $r = Apache::Request->new(Apache->request); my %form = $r->content; #modify %form $r->content(%form); $r->internal_redirect_handler($some_page); That’s the idea

Re: installation bug with Apache v2.0.42

2002-09-25 Thread Andreas Hasenack
Em Wed, Sep 25, 2002 at 10:40:53AM -0700, Eugene Eric Kim escreveu: > format of the macros in include/ap_release.h between 2.0.40 and 2.0.42. > AP_SERVER_BASEREVISION is now: > > #define AP_SERVER_BASEREVISION AP_SERVER_MINORREVISION "." AP_SERVER_PATCHLEVEL > > instead of simply: > > #defi

installation bug with Apache v2.0.42

2002-09-25 Thread Eugene Eric Kim
I found a minor installation bug in both modperl v1.99-5. (The same bug also seems to be in the latest modperl-2.0 CVS tree.) The bug occurs when you try to install modperl 2 with the latest version of Apache (2.0.42). For whatever reason, the Apache folks changed the format of the macros in

Re: Documentation for Apache::exit()?

2002-09-25 Thread valerian
On Tue, Sep 24, 2002 at 08:03:56PM -0700, Kyle Oppenheim wrote: > There are a few performance penalties when using Apache::Registry: > > * Scripts are compiled at first request instead of server start unless you > use something like Apache::RegistryLoader. So, the first request per child > will

Re: modules and pragmas - part II

2002-09-25 Thread pilsl
On Wed, Sep 25, 2002 at 12:29:12AM -0400, Perrin Harkins wrote: > > Are you setting $CGI::XHTML to 0 somewhere? > No I posted the whole script: #!/usr/bin/perl -w use CGI qw(standard -no_xhtml); my $q=new CGI; print $q->header,$q->start_html,"\n"; print $$,"\n";