Re: Proxy authentication against a mod_perl backend - how?

2002-04-02 Thread Igor Sysoev
On Mon, 1 Apr 2002, Fury wrote: > I've recently reconfigured a web server to use the front-end proxy/back-end > mod_perl configuration. One application runs happily on the mod_perl > server, with static content being served from the proxy, and dynamic > requests forwarded to the backend. > > Ho

Re: Any way to run two versions of the same perl classes at the sametime?

2002-04-02 Thread Stas Bekman
Thomas Burkholder wrote: > Hi there- > > I've reached a point where I've released a stable version of my project > (areaj, at www.areaj.org) with a demo server (www.areaj.org/areaj) but I > want to continue development work on the same machine. But, obviously > the new and old versions of the

Re: general timeout for mod_perl scripts?

2002-04-02 Thread Stas Bekman
Perrin Harkins wrote: >>i would like to prevent any of my mod_perl scripts from running longer > > than > >>5 seconds. is there an elegant way to make a general timeout that > > does not > >>require changing all my scripts? i run both Registry and Mason > > scripts in > >>my environment. >

Re: Any way to run two versions of the same perl classes at the sametime?

2002-04-02 Thread chubuk
Hi! You can use this method. Run another apache server in port 8080 (for example) You can't change dir when move script to front server. See -> http://www.my_server.com:80/index.html (or http://www.myold.com/index.html) http://www.my_server.com:8080/index.html - developer server. Vlad Chubuk

DBI: selectall_hasref incompatibility

2002-04-02 Thread Rafiq Ismail (ADMIN)
Got a slight problem here.. Does anyone know why there was at some point a major change in the return value for DBI::selectall_hashref? And is there a depricated method which still uses the original prototype? My problem: --- Using DBI V1.19 on my box, the reported prototype is:

Re: DBI: selectall_hasref incompatibility

2002-04-02 Thread Rafiq Ismail (ADMIN)
Fixed it with common sense - using "values %$result" to get back my original struct. Time to upgrade DBI. Cheers anyway. And a great big nasty insult to the wonderful guy who went and made the selectall_hashref method do what it logically sounds like it should do. ;) fiq On Tue, 2 Apr 2002,

Re: Closer to installation

2002-04-02 Thread Stas Bekman
John, when debugging problems one should closely watch the error_log file (usually open with tail -f). It always tells you what the problem is. So what does it say with your latest problem? __ Stas BekmanJAm_pH -->

Re: Be carefull with apache 1.3.24

2002-04-02 Thread Pedro Melo Cunha
Did not tested with that one... I was having problems with cookies only... Or so I thought :) On Mon, Apr 01, 2002 at 11:22:10PM +0200, Eric Cholet wrote: > --On lundi 1 avril 2002 17:12 +0100 Pedro Melo Cunha <[EMAIL PROTECTED]> > wrote: > > > It seems to be fixed in CVS Haven't tried it

Re: SSL Installation Questions - Help

2002-04-02 Thread Louis-David Mitterrand
On Sat, Mar 09, 2002 at 10:12:32AM -0800, Kirk Rogers wrote: > Hi all, > So I went ahead and tried to install apache-ssl and am following the > instructions to the T. > > I've acquired: > mod_perl-1.26.tar.gz > openssl-0.9.6c.tar.gz > apache_1.3.22.tar.gz > apache_1.3.22+ssl_1.47.tar.gz Man this

Re: SSL Installation Questions - Help

2002-04-02 Thread Michael Robinton
> On Sat, Mar 09, 2002 at 10:12:32AM -0800, Kirk Rogers wrote: > > Hi all, > > So I went ahead and tried to install apache-ssl and am following the > > instructions to the T. > > > > I've acquired: > > mod_perl-1.26.tar.gz > > openssl-0.9.6c.tar.gz > > apache_1.3.22.tar.gz > > apache_1.3.22+ssl_1.

Re: SSL Installation Questions - Help

2002-04-02 Thread Andrew Ho
Hello, LDM>Having to compile, install, integrate everything yourself is a huge LDM>waste of time. Your are duplicating all the efforts put in by the LDM>distributions, for zero added value. Huh? Having control over what modules go into your Apache, plus having one compiled on your machine for yo

make test fails on redhat

2002-04-02 Thread Jie Gao
Hi All, mod_perl-1.26 uname -a Linux 2.4.18-shuckle #2 Wed Mar 13 22:16:15 EST 2002 i686 unknown perl -V Summary of my perl5 (revision 5.0 version 6 subversion 1) configuration: Platform: osname=linux, osvers=2.4.17-0.13smp, archname=i386-linux uname='linux daffy.perf.redhat.com

Modperl Footers/Headers

2002-04-02 Thread Philip M. Gollucci
Okay I've got an FBSD4.5 box with apache-1.3.24 with mod_perl1.26 I need to add a "canned" Footer to every page except one (toc.html). This includes Location handlers, .cgi, .pl, .s?html http://modperl.com:9000/perl_conference/cool_tricks/mp_footer.html I saw that... but this doesn't work since .

Re: Apache::DBI or What ?

2002-04-02 Thread Eric Frazier
Hi! Thanks a lot for this. I am not sure now if I will be able to use it. I am afraid that if I do I will suddenly become its main supporter :) I also still don't see how a connection can be "reconnected" at such a high level. Even when I looked into the mySQL C api I didn't see anything that wo

Re: Apache::DBI or What ?

2002-04-02 Thread Perrin Harkins
Eric Frazier wrote: > I also still don't see how a connection can be "reconnected" at such a high > level. It can't, unless your database specifically supports the command "reauthenticate". Oracle does, which is what he wrote this for, but I don't think it's a standard part of SQL syntax so it

Re: Closer to installation

2002-04-02 Thread John Kolvereid
Hi Stas, I have been watching my error_log. Here is what I have found so far (in a nut shell): mod_perl and php4 cannot co-exist. I have documented as best I can my findings in hopes that someone can 'fix' this problem: mod_perl only: - building Apache configure \

install test fails

2002-04-02 Thread terry mcintyre
Redhat Linux 7.2 Apache 1.3.24 Perl 5.6.1 mod-perl-1.26 make test fails with result: /usr/bin/perl t/TEST 0 Can't locate object method "new" via package "URI::URL" (perhaps you forgot to load "URI::URL"?) at ../blib/lib/Apache/test.pm line 252. make: *** [run_tests] Error 255 typescript with

Re: Closer to installation

2002-04-02 Thread Stas Bekman
John Kolvereid wrote: > Hi Stas, > I have been watching my error_log. Here is what I > have found so far (in a nut shell): mod_perl and php4 > cannot co-exist. I have documented as best I can my > findings in hopes that someone can 'fix' this problem: John, we are going in circles here: >