Re: Just a few good men? Was: ignored (again)

2001-07-05 Thread Matt Sergeant
On 04 Jul 2001 17:31:24 +0200, Joachim Zobel wrote: Hi. The question is: Are a few good developers all we need? If this is the case we can safely ignore to be ignored (we have them). It is OK to be one of the few people to know the leading Apache development system. But it has

[OT]: Re: Just a few good men? Was: ignored (again)

2001-07-05 Thread Gunther Birznieks
At 07:44 AM 7/5/2001 +, Matt Sergeant wrote: On 04 Jul 2001 17:31:24 +0200, Joachim Zobel wrote: Hi. The question is: Are a few good developers all we need? If this is the case we can safely ignore to be ignored (we have them). It is OK to be one of the few people to know the

I need help...

2001-07-05 Thread Alberto Canzi
Hi, I'm writing a perl module for Apache, but I have this problem: I need to allocate some memory that will persist for the entire apache server's cycle of life. (That is: I need to allocate some memory at the server's start that could be read and written by my module. In other words : my

Re: I need help...

2001-07-05 Thread Matt Sergeant
On 05 Jul 2001 13:56:32 +0200, Alberto Canzi wrote: Hi, I'm writing a perl module for Apache, but I have this problem: I need to allocate some memory that will persist for the entire apache server's cycle of life. (That is: I need to allocate some memory at the server's

I need help...

2001-07-05 Thread Alberto Canzi
Hi, I'm writing a perl module for Apache, but I have this problem: I need to allocate some memory that will persist for the entire apache server's cycle of life. (That is: I need to allocate some memory at the server's start that could be read and written by my module. In other words : my

Re: I need help...

2001-07-05 Thread darren chamberlain
Alberto Canzi [EMAIL PROTECTED] said something to this effect on 07/05/2001: Hi, I'm writing a perl module for Apache, but I have this problem: I need to allocate some memory that will persist for the entire apache server's cycle of life. (That is: I need to allocate some memory at the

Re: I need help...

2001-07-05 Thread Olivier Poitrey
I think you can do this job easly with Apache::SharedMem. - Original Message - From: Alberto Canzi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 1:56 PM Subject: I need help... Hi, I'm writing a perl module for Apache, but I have this problem: I need to

lookup_uri() returns 200 when 404 expected

2001-07-05 Thread Paul Sharpe
Here's my handler... package Foo::Test; use strict; use warnings; use Apache::Constants qw(:common HTTP_OK); sub handler { my $r = shift; my $uri = 'foo.html'; $r-content_type('text/plain'); $r-send_http_header; $r-lookup_uri($uri); $r-print(lookup_uri($uri) status = ,$r-status,\n);

Re: Just a few good men? Was: ignored (again)

2001-07-05 Thread Michael Bacarella
On Thu, Jul 05, 2001 at 07:44:53AM +, Matt Sergeant wrote: On 04 Jul 2001 17:31:24 +0200, Joachim Zobel wrote: from server side javascript to java. With better Perl marketing they might migrate from Perl/CGI to mod_perl and my work would be more fun (I do consider changing my job

Re: lookup_uri() returns 200 when 404 expected

2001-07-05 Thread barries
On Thu, Jul 05, 2001 at 03:21:12PM +0100, Paul Sharpe wrote: Here's my handler... package Foo::Test; use strict; use warnings; use Apache::Constants qw(:common HTTP_OK); sub handler { my $r = shift; my $uri = 'foo.html'; $r-content_type('text/plain'); $r-send_http_header;

suexecx mod_perl

2001-07-05 Thread Oliver - GoodnGo.COM \(R\)
hello list, I tried to configure my new apache (with APACI) like this: ./configure --prefix=/usr/local/apache --activate-module=src/modules/perl/li bperl.a --enable-shared=perl --enable-suexec --suexec-caller=apache --suexec -docroot=/home --suexec-userdir=/home --suexec-uidmin=500

Re: lookup_uri() returns 200 when 404 expected

2001-07-05 Thread Paul Sharpe
barries wrote: On Thu, Jul 05, 2001 at 03:21:12PM +0100, Paul Sharpe wrote: Here's my handler... package Foo::Test; use strict; use warnings; use Apache::Constants qw(:common HTTP_OK); sub handler { my $r = shift; my $uri = 'foo.html'; $r-content_type('text/plain');

Re: suexecx mod_perl

2001-07-05 Thread Stas Bekman
On Thu, 5 Jul 2001, Oliver - GoodnGo.COM (R) wrote: hello list, I tried to configure my new apache (with APACI) like this: ./configure --prefix=/usr/local/apache --activate-module=src/modules/perl/li bperl.a --enable-shared=perl --enable-suexec --suexec-caller=apache --suexec

Module::Use 0.03

2001-07-05 Thread James G Smith
Yes, another day and another version... o Decay and Grow configurations to help make module set change with the needs of the scripts. o DB_FileLock logger actually works now. o Debug logger now sorts the modules before printing. o Modules are automatically loaded properly. The Decay and Grow

DSO suexecx mod_perl

2001-07-05 Thread Oliver
Hello, OK, but I can I govern this: in the apache configuration of ./configure I tried to add some DSO (Dynamical Shared Objects) like this ./configure --enable-module=most --enable-shared=max --enable-suexec --suexe c-caller=apache --suexec-docroot=/home --suexec-userdir=/home --suexec-uidmi

Re: DSO suexecx mod_perl

2001-07-05 Thread James G Smith
Oliver [EMAIL PROTECTED] wrote: Hello, OK, but I can I govern this: in the apache configuration of ./configure I tried to add some DSO (Dynamical Shared Objects) like this ./configure --enable-module=most --enable-shared=max --enable-suexec --suexe c-caller=apache --suexec-docroot=/home

Re: lookup_uri() returns 200 when 404 expected

2001-07-05 Thread barries
On Thu, Jul 05, 2001 at 04:03:00PM +0100, Paul Sharpe wrote: barries wrote: On Thu, Jul 05, 2001 at 03:21:12PM +0100, Paul Sharpe wrote: Here's my handler... package Foo::Test; use strict; use warnings; use Apache::Constants qw(:common HTTP_OK); sub handler { my

Re: Just a few good men? Was: ignored (again)

2001-07-05 Thread Bakki Kudva
On 05 Jul 2001 07:44:53 + Matt Sergeant [EMAIL PROTECTED] wrote: Matt I was really looking forward to your presentation @ YAPC::Montreal and also to meet you and other mod_perlers at a BOF which didn't happen. But I do want to mention T.J.Mather's wonderful presentation of PageKit and Chris

Re: lookup_uri() returns 200 when 404 expected

2001-07-05 Thread Paul Sharpe
barries wrote: On Thu, Jul 05, 2001 at 04:03:00PM +0100, Paul Sharpe wrote: barries wrote: On Thu, Jul 05, 2001 at 03:21:12PM +0100, Paul Sharpe wrote: Here's my handler... package Foo::Test; use strict; use warnings; use Apache::Constants qw(:common HTTP_OK);

HTML Generators (was: Re: Just a few good men? Was: ignored (again))

2001-07-05 Thread Robin Berjon
On Thursday 05 July 2001 15:41, Michael Bacarella wrote: On Thu, Jul 05, 2001 at 07:44:53AM +, Matt Sergeant wrote: Yes, we do. But I don't think it's enough to convince people to move to mod_perl. They want to move to a better framework. I'm sure you know which one I favour :-) Sadly

Problems with Apache::SharedMem

2001-07-05 Thread Alberto Canzi
Hi I've tried to use Apache::SharedMem to share memory between subsequent requests' handlers, but I got this error messages: *** [Thu Jul 5 16:46:53 2001] [error] Apache::SharedMem object initialization: Unable to initialize root ipc shared memory segment: File exists at

Re: lookup_uri() returns 200 when 404 expected

2001-07-05 Thread barries
On Thu, Jul 05, 2001 at 04:57:13PM +0100, Paul Sharpe wrote: What would happen if the URI translated to something other than a file e.g. CGI? You get the filename of the script. - Barrie

ANNOUNCE: CGI::URI2param 0.03

2001-07-05 Thread Thomas Klausner
Hi! The uploaded file CGI-URI2param-0_03.tar.gz has entered CPAN as file: $CPAN/authors/id/D/DO/DOMM/CGI-URI2param-0_03.tar.gz size: 2858 bytes md5: 059f7b717e5b746a1ecde3fc12fb32d5 This is the first public release. DESCRIPTION: CGI::URI2param takes a request object (as supplied

Apache hangs on Win2000

2001-07-05 Thread Rod Butcher
Running Apache 1.3.19, mod_perl 1.25_01-dev, ActivePerl 623 on Win2000 SP2. Apache hangs after 2-3 days, stranglely FTgate Pop3 server hangs at the same time. I've been running this setup for many months now with no problems, only seems to have happened since I upgraded to 1.3.19. Does this ring

Apache V2 and Mod_Perl Question

2001-07-05 Thread Purcell, Scott
Hello, NT question. I believe that Apache 2 is out for NT, and was wondering if apache 2 works with mod_perl? I am running Apache 1.3.20 and mod_perl 1.25_01-dev. Can or should we start converting to Apache 2? Just curous about some time frames for this. Thanks Scott Purcell

Re: [OT]: Re: Just a few good men? Was: ignored (again)

2001-07-05 Thread Jimi Thompson
Gunther, I think that mentions in publications like Ziff-Davis, CMP.net, maybe SysAdmin. However, the techies know mod_perl and love it. It's the PHB's that we need to convince of the merit of our chosen platform. Therefore, it also needs to make it into the rags that management reads like

Re: Apache V2 and Mod_Perl Question

2001-07-05 Thread Gunther Birznieks
At 04:46 PM 7/5/2001 -0500, Purcell, Scott wrote: Hello, NT question. I believe that Apache 2 is out for NT, and was wondering if apache 2 works with mod_perl? I am running Apache 1.3.20 and mod_perl 1.25_01-dev. Can or should we start converting to Apache 2? Just curous about some time frames

modperl install without Apache src?

2001-07-05 Thread Knox, Laurie A, NPONS
Hi folks, Thanks to those who helped me out with the basic mod_perl questions I posted before. We're getting there! I have a question about mod_perl installation - I have Apache 1.3.9 running on a Solaris 8 machine with mod_perl 1.21. I was going to upgrade it to 1.25, but I don't have the

Re: mod_perl on win2k: cannot load module

2001-07-05 Thread frans
I use Apache 1.3.9 and it's an old version of course.. why don't you try compiling the source code provided by www.modperl.org ? Thank you. - Frans Electronics Engineering Department of Electrical Engineering Institut Teknologi Bandung Email: