upgrading to apache 2

2003-09-17 Thread Malka Cymbalista
would like to install Apache 2, mod_perl 2, and Perl 5.8. Does anyone know of any specific problems, issues that I should look out for? I am also running MySQL and I use the perl DBI-DBD modules for interfacing between apache and mysql. If anyone has any suggestions or tips to pass along I would

Re: upgrading to apache 2

2003-09-17 Thread Ged Haywood
Hello there, On Wed, 17 Sep 2003, Malka Cymbalista wrote: I am currently running apache 1.3.26 with mod_perl 1.36 and Perl 5.6.1 on my web server which is a Sun Solaris machine ... I would like to install Apache 2, mod_perl 2, and Perl 5.8. While Apache version 2 is stable, mod_perl version

Re: mod_perl.pm and Apache 2

2003-03-28 Thread Geoffrey Young
Chris Majewski wrote: OK, I've resolved the mod_perl.pm dependency by reinstalling mod_perl-1.99_08 (from src). But now I get this when trying to install Apache::Cookie Can't locate Apache/MyConfig.pm in @INC (@INC contains: /usr/perl5/5.6.1/lib/sun4-solaris-64int /usr/perl5/5.6.1/lib

Help - Can Apache 2 Filters be implemented in Apache 1.3.x via mod_perl

2003-03-06 Thread David Culp
Can Apache 2 Filters be implemented in Apache 1.3.x via mod_perl ? My goal is to rewrite some parts of the body of a web page before it is sent back to the client (Output Filter). I have it working in Apache 2 using an Output Filter. However, I'm forced to return to Apache 1.3.x; I

Help - Can Apache 2 Filters be implemented in Apache 1.3.x via mod_perl - Continue

2003-03-06 Thread David Culp
Sorry - implemented via mod_perl 1.x - Original Message - From: David Culp To: [EMAIL PROTECTED] Sent: Thursday, March 06, 2003 11:13 PM Subject: Help - Can Apache 2 Filters be implemented in Apache 1.3.x via mod_perl Can Apache 2 Filters be implemented in Apache 1.3.x via

Re: Help - Can Apache 2 Filters be implemented in Apache 1.3.x viamod_perl

2003-03-06 Thread Perrin Harkins
On Thu, 2003-03-06 at 23:13, David Culp wrote: Can Apache 2 Filters be implemented in Apache 1.3.x via mod_perl [1.x]? No. However, there are a couple of method for doing this in 1.x. See Apache::Filter or Apache::OutputChain. - Perrin

Re: Apache 2?

2002-12-10 Thread Vivek Khera
GC == Grant Cooper [EMAIL PROTECTED] writes: GC Is there any documention of a HOWTO or a tutorial about a lightweight GC front-end proxy that loads the data from the mod_perl try this: perldoc mod_perl_tuning It comes with mod_perl, conveniently. Nobody has sent me any updates in two years,

Re: Apache 2?

2002-11-30 Thread Jason Czerak (Jasnik)
. -- Jason These days, Apache 2 has become the default version of Apache. On my site, I run a front end Apache and a back end Apache. Front end: Apache 1.x, has mod_accel module which is like mod_proxy, but downloads all the data from the backend ASAP and frees it up immediately, so

Re: Apache 2?

2002-11-30 Thread Philip Mak
. And, everyone can change their own server configuration. We know that Apache 2 confers benefit #1 without needing a separate frontend and backend. Benefit #2 seems to be planned, but isn't here yet. ...What about benefit #3?

Re: Apache 2?

2002-11-30 Thread Stas Bekman
configuration. We know that Apache 2 confers benefit #1 without needing a separate frontend and backend. Benefit #2 seems to be planned, but isn't here yet. ...What about benefit #3? #3: --with-mpm=perchild which is a work in progress http://httpd.apache.org/docs-2.0/mod/perchild.html notice the new

Re: Apache 2?

2002-11-28 Thread Stas Bekman
Issac Goldstand wrote: - Original Message - From: Stas Bekman [EMAIL PROTECTED] . Since if your mod_perl handler sends the data to a thread which runs a filter that send the data to a client (and doesn't need perl) it'll still block on the network transfer, which will block the

Re: Apache 2?

2002-11-27 Thread Igor Sysoev
On Tue, 26 Nov 2002, Philip Mak wrote: On Tue, Nov 26, 2002 at 11:40:00AM -0800, Grant Cooper wrote: What do yo mean a modem will tie up the Server? I've never heard this before. Let's say you have a mod_perl page that returns a 100k document, and a 28.8k modem downloads that document.

Re: Apache 2?

2002-11-27 Thread Issac Goldstand
- Original Message - From: Stas Bekman [EMAIL PROTECTED] To: Philip Mak [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, November 27, 2002 2:24 AM Subject: Re: Apache 2? . Since if your mod_perl handler sends the data to a thread which runs a filter that send the data

Apache 2?

2002-11-26 Thread Philip Mak
These days, Apache 2 has become the default version of Apache. On my site, I run a front end Apache and a back end Apache. Front end: Apache 1.x, has mod_accel module which is like mod_proxy, but downloads all the data from the backend ASAP and frees it up immediately, so that a slow modem

Re: Apache 2?

2002-11-26 Thread Grant Cooper
What do yo mean a modem will tie up the Server? I've never heard this before. - Original Message - From: Philip Mak [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 26, 2002 2:15 AM Subject: Apache 2? These days, Apache 2 has become the default version of Apache. On my

Re: Apache 2?

2002-11-26 Thread Philip Mak
On Tue, Nov 26, 2002 at 11:40:00AM -0800, Grant Cooper wrote: What do yo mean a modem will tie up the Server? I've never heard this before. Let's say you have a mod_perl page that returns a 100k document, and a 28.8k modem downloads that document. The mod_perl process that is serving that

Re: Apache 2?

2002-11-26 Thread Philip Mak
; I don't know if it will work with Apache 2.x. http://www.aaanime.net/pmak/apache/mod_accel/

Re: Apache 2?

2002-11-26 Thread Stas Bekman
. It's for Apache 1.3.x; I don't know if it will work with Apache 2.x. http://www.aaanime.net/pmak/apache/mod_accel/ and of course your perl.apache.org docs: http://perl.apache.org/docs/1.0/guide/strategy.html http://perl.apache.org/docs/1.0/guide/scenario.html

Re: Apache 2?

2002-11-26 Thread Stas Bekman
Philip Mak wrote: These days, Apache 2 has become the default version of Apache. On my site, I run a front end Apache and a back end Apache. Front end: Apache 1.x, has mod_accel module which is like mod_proxy, but downloads all the data from the backend ASAP and frees it up immediately, so

Re: Apache 2?

2002-11-26 Thread Randal L. Schwartz
Philip == Philip Mak [EMAIL PROTECTED] writes: Philip Let's say you have a mod_perl page that returns a 100k document, and a Philip 28.8k modem downloads that document. Philip The mod_perl process that is serving that document will be tied up Philip until that modem finishes downloading the

[OT] Persistant MySQL connections in Apache 2

2002-11-18 Thread Issac Goldstand
This is really a C API thing, but I was wondering if Apache2::DBI people can help me shed some light on this... - Original Message - From: Kent Fitch To: [EMAIL PROTECTED] Sent: Monday, November 18, 2002 5:37 AM Subject: Re: [apache-modules] Persistant MySQL connections in Apache 2 Hi

Re: [OT] Persistant MySQL connections in Apache 2

2002-11-18 Thread Stas Bekman
, and implementation, it's probably the best to do that on the dbi-dev list. - Original Message - From: Kent Fitch To: [EMAIL PROTECTED] Sent: Monday, November 18, 2002 5:37 AM Subject: Re: [apache-modules] Persistant MySQL connections in Apache 2 Hi Issac, From: Issac Goldstand Subject: [apache

Re: mod_perl and apache 2.x

2002-11-11 Thread Stas Bekman
Jay Thorne wrote: Are there plans to make the new mod_perl backwards compatible? I tried a few months ago to move my faily large app to apache 2.x and mod perl and far far too many things are different. I'd love to experiment with the new code base, but this lack of compatibility is a show

non-internal redirect at authenticate stage in Apache 2?

2002-10-06 Thread Kirk Bowe
Hi. In Apache 1 I used the CGI module to send out HTML to do a non-internal redirect from my PerlAuthenHandler script, once authentication had been established. But now Apache 2 / mod_perl 2 doesn't seem to like that (complains that it can't do a send_cgi_header on a null value, for exactly

mod_perl and apache 2.x

2002-09-10 Thread Jay Thorne
Are there plans to make the new mod_perl backwards compatible? I tried a few months ago to move my faily large app to apache 2.x and mod perl and far far too many things are different. I'd love to experiment with the new code base, but this lack of compatibility is a show stopper for me. I

Make test failure when installing mod_perl 2.0 on Solaris 8 with Apache 2

2002-08-20 Thread Tom Hibbert
Hi, I am running Solaris 8 and have installed Apache 2: bash-2.03# /usr/apache/bin/httpd -v Server version: Apache/2.0.39 Server built: Aug 20 2002 11:26:54 I also have installed perl 5.8.0: bash-2.03# perl -v This is perl, v5.8.0 built for sun4-solaris I am trying to install mod_perl 2

Re: Naming convention for Apache 2 modules.

2002-06-18 Thread Per Einar Ellefsen
At 11:31 18.06.2002, Andy Wardley wrote: I've been playing around with Apache 2 and mod_perl 1.99 and considering the changes I'll need to make to Apache::Template to make it play nicely under the new world order. Given that I want to continue to support Apache::Template for v1 users, should I

Re: Naming convention for Apache 2 modules.

2002-06-18 Thread Per Einar Ellefsen
At 13:26 18.06.2002, Stas Bekman wrote: Andy Wardley wrote: I've been playing around with Apache 2 and mod_perl 1.99 and considering the changes I'll need to make to Apache::Template to make it play nicely under the new world order. Given that I want to continue to support Apache::Template for v1

Re: Naming convention for Apache 2 modules.

2002-06-18 Thread Stas Bekman
[CC'ing Andreas again] Stas is right. The only problem I see with MP_INST_APACHE2 is the fact that using the CPAN.pm module to download the module would fetch the newest version of the module, regardless of whether you wanted the one for mod_perl 2.0 or mod_perl 1.0. That's true :( I

Re: Naming convention for Apache 2 modules.

2002-06-18 Thread Ian D. Stewart
On 2002.06.18 09:57 Stas Bekman wrote: [CC'ing Andreas again] Stas is right. The only problem I see with MP_INST_APACHE2 is the fact that using the CPAN.pm module to download the module would fetch the newest version of the module, regardless of whether you wanted the one for mod_perl

Re: Naming convention for Apache 2 modules.

2002-06-18 Thread Stas Bekman
Ian D. Stewart wrote: On 2002.06.18 09:57 Stas Bekman wrote: [CC'ing Andreas again] Stas is right. The only problem I see with MP_INST_APACHE2 is the fact that using the CPAN.pm module to download the module would fetch the newest version of the module, regardless of whether you wanted

Re: apache 2 mod_perl 2 Apache::DBI

2002-06-12 Thread Randy Kobes
On Sun, 9 Jun 2002, Yuri A. Kabaenkov wrote: Hello, How can i install Apache::DBI module with mod_perl 2? I'm not sure what the current status of this is, but see the discussion of Apache::DBIPool at http://perl.apache.org/release/docs/2.0/user/overview/overview.html. best regards,

apache 2 mod_perl 2 Apache::DBI

2002-06-09 Thread Yuri A. Kabaenkov
Hello, How can i install Apache::DBI module with mod_perl 2? -- Best regards, Yuri mailto:[EMAIL PROTECTED]

Re: mod_perl 2 apache 2?

2001-10-16 Thread Stas Bekman
Michael Wojcikiewicz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Has anyone tried getting mod_perl to work in Apache v2 (the latest beta?)... Just a quick try resulted in mod_perl2 trying to compile against apache 1.3.20... Wasnt mod_perl v2 supposed to be for Apache v2?...

mod_perl 2 apache 2?

2001-10-10 Thread Michael Wojcikiewicz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Has anyone tried getting mod_perl to work in Apache v2 (the latest beta?)... Just a quick try resulted in mod_perl2 trying to compile against apache 1.3.20... Wasnt mod_perl v2 supposed to be for Apache v2?... Michael Wojcikiewicz Perl Developer -

Re: Apache 2 opportunity

2000-08-15 Thread Doug MacEachern
the apache main process ?),it is visible to the apache childs (threads) and is destroied at session end. With the efforts (syntax tree sharing between threads) necessary to port modperl to apache 2, will be possible to implement such a feature ? it will be possible to share db connections betwe

Apache 2 opportunity

2000-07-02 Thread Francesco Pasqualini
s (threads) and is destroied at session end. With the efforts (syntax tree sharing between threads) necessary to port modperl to apache 2, will be possible to implement such a feature ? Thanks Francesco Pasqualini