Redundancy with 2 web servers

2002-11-04 Thread Heiss, Christian
Title: Redundancy with 2 web servers Hello, Does anybody can help me how to create redundancy with 2 intranet web servers? Maybe anybody has experience with a technician to build this, like what kind of box (RedHat, SuSE, Debian, ..?) I'm absolutely free in my decisions how to create

Re: Redundancy with 2 web servers

2002-11-04 Thread Dzuy Nguyen
Title: Redundancy with 2 web servers You might want to look into a load balancer solution such as Linux Virtual Server http://www.LinuxVirtualServer.org/ Heiss, Christian wrote: 30014ACC2301D611A655000629899646EDBC@fs01"> Hello, Does anybody can help me how to create redundancy with

Re: [OTish] Version Control?

2002-11-04 Thread Michael Schout
perl Makefile.PL /dev/null works for us. We encapsulate it in a macro (see below). Now why didn't I think of that? :). This works nicely. We still ahve to patch some of the individual Makefile.PL's, but that is acceptable (some of them have exit; at the end of them for example which causes

Re: [O] Re: Yahoo is moving to PHP ??

2002-11-04 Thread Rob Nagler
Perrin Harkins writes: Correct Perl style is probably not something that any two people will ever agree on. If you use Extreme Programming, the whole team has to agree. Collective ownership, pair programming, and refactoring all suffer if you don't have a common coding style. The use of map,

Re: [OTish] Version Control? (Project Idea)

2002-11-04 Thread Luis Fagundes
I find not only amazing that so many of us are doing the exact same thing, but also that the project I'm working on now is about these same ideas we have. So, why not make it GPL? I'm developing an intranet to organize a web development team and there is a lot of CVS involved in it. Right now

Re: How to parse after reading POST data in mod_perl 2 ?

2002-11-04 Thread Sumitro Chowdhury
Thanks Philippe for the tip. After looking at Apache2::Apache::compat and some input from Randy Kobes, I came up with the following package called getform.pm which gets the form data into a hash without using Apache::compat. (Hope it will help some newbie !!): package ModPerl::getform; use

Re: [O] Re: Yahoo is moving to PHP ??

2002-11-04 Thread Randal L. Schwartz
Perrin == Perrin Harkins [EMAIL PROTECTED] writes: Perrin Someone else will eventually have to maintain them, so I Perrin write in a way that a novice with a copy of Learning Perl has a hope Perrin of understanding. Perrin When I work in an environment that is more Perl-centric, I expand the

[DIGEST] mod_perl digest 2002/10/21

2002-11-04 Thread jgsmith
-- mod_perl digest October 21, 2002 - November 3, 2002 -- Recent happenings in the mod_perl world... Features o

Apache lifecycle: can I choose which VirtualHost?

2002-11-04 Thread Larry Leszczynski
Hi everyone - Suppose a request comes in which would normally get sent to the default VirtualHost (because it's missing a Host header, or the name in the Host header isn't recognized, or whatever). Is there any mod_perlish way to explicitly handle that request with a different (non-default)

[mod_perl2]

2002-11-04 Thread Hsiao, Chang-Ping
All: I am trying to install mod_perl 2 (1.99_07), but am seeing the following error. From the error_log file under t/logs/, it seems like the mkdir being rejected. Meanwhile, when I tried it again, I don't get the error_log file anymore so that I cannot attach the error in the log file.

Re: [mod_perl2]

2002-11-04 Thread Sumitro Chowdhury
I had the same problem. I simply created the necessary directory manually and ran make test again. Worked with out problems. Good Luck Sumitro Chowdhury. --- Hsiao, Chang-Ping [EMAIL PROTECTED] wrote: All: I am trying to install mod_perl 2 (1.99_07), but am seeing the following

RE: [mod_perl2]

2002-11-04 Thread Hsiao, Chang-Ping
I did the same -- creating the directory manually, but it didn't work for me. ?:-( Thanks for your help! :-) Chang-Ping -Original Message- From: Sumitro Chowdhury [mailto:sumitrochow;yahoo.com] Sent: Monday, November 04, 2002 3:26 PM To: Hsiao, Chang-Ping Cc: [EMAIL PROTECTED]

RE: [mod_perl2]

2002-11-04 Thread Randy Kobes
On Mon, 4 Nov 2002, Hsiao, Chang-Ping wrote: I did the same -- creating the directory manually, but it didn't work for me. ?:-( Thanks for your help! :-) Chang-Ping Is it a problem with permissions, in that you're trying to create a directory you don't have permission to do? Try

RE: [mod_perl2]

2002-11-04 Thread Hsiao, Chang-Ping
-Original Message- From: Randy Kobes [mailto:randy;theoryx5.uwinnipeg.ca] Sent: Monday, November 04, 2002 3:44 PM To: Hsiao, Chang-Ping Cc: 'Sumitro Chowdhury'; [EMAIL PROTECTED] Subject: RE: [mod_perl2] On Mon, 4 Nov 2002, Hsiao, Chang-Ping wrote: I did the same -- creating

Re: Apache lifecycle: can I choose which VirtualHost?

2002-11-04 Thread Ged Haywood
Hi there, On Mon, 4 Nov 2002, Larry Leszczynski wrote: Suppose a request comes in which would normally get sent to the default VirtualHost (because it's missing a Host header, or the name in the Host header isn't recognized, or whatever). Is there any mod_perlish way to explicitly handle

redirection halts if a message is printed

2002-11-04 Thread Sumitro Chowdhury
Hello, I see redirection behaves differently when a message is printed beforehand then when redirection happens alone. Case I ( simple redirection ): -- package redirect.pm use Apache::Const -compile = qw(HTTP_MOVED_TEMPORARILY); sub handler ( my $r = shift;

Re: redirection halts if a message is printed

2002-11-04 Thread Chris Shiflett
Sumitro Chowdhury wrote: Case I ( simple redirection ): -- package redirect.pm use Apache::Const -compile = qw(HTTP_MOVED_TEMPORARILY); sub handler ( my $r = shift; $r-content_type('text/html'); $r-headers_out-{'Location'}= http://new.location;; return

Re: redirection halts if a message is printed

2002-11-04 Thread Richard Clarke
Sumitro Chowdhury wrote: snip My question is : a)What is the reason for this behaviour ? Why does printing a message halt the redirection ? I don't know how to explain this really but, HTTP_MOVED_TEMPORARILY implies a 302 status code which means, The requested resource resides

Re: redirection halts if a message is printed

2002-11-04 Thread Sumitro Chowdhury
Understood. Thanks to Chris and Richard. Sumitro Chowdhury. Do you Yahoo!? HotJobs - Search new jobs daily now