Re: getting rid of nested sub lexical problem

2000-12-30 Thread Chris Nokleberg
On Thu, 21 Dec 2000, Doug MacEachern wrote: On Thu, 19 Oct 2000, Chris Nokleberg wrote: Following up on my post on this subject a couple of months ago, here is a proof-of-concept drop-in replacement for Apache::Registry that eliminates the "my() Scoped Variable in Nested Subroutine"

Re: problems with mod_perl

2000-12-30 Thread G.W. Haywood
Hi there, butting in because everybody's drunk or on holiday On Sat, 30 Dec 2000, Yung Kwong Wing wrote: OH I forgot to ask. How do I install the libww and the required HTML modules? Exactly what modules do they need? # perl -MCPAN -eshell Also, be sure to so a "make install" from the

Re: do I really need mod_perl

2000-12-30 Thread John K Sterling
read this: http://take23.org/whatis_mod_perl.xml it should explain all. sterling Yung Kwong Wing wrote: Hi, Sorry for asking a stupid question, but I was wondering do I really need to install "mod_perl" to get my website to work with CGI. It seems that after my unsuccessful attempt at

Re: do I really need mod_perl

2000-12-30 Thread Myrddin
On Sat, Dec 30, 2000 at 12:18:00PM -0800, John K Sterling wrote: read this: http://take23.org/whatis_mod_perl.xml it should explain all. sterling An excellent link. Yung Kwong Wing wrote: Hi, Sorry for asking a stupid question, but I was wondering do I really need to install

Re: Apache::Request and redirects

2000-12-30 Thread Dave Rolsky
On Sat, 30 Dec 2000, Matt Sergeant wrote: Another minor issue is that Apache::Request is not trivially subclassed, the returned value from $self-SUPER::new() must be reblessed into the desired class. Thats a pretty standard perl idiom: sub new { my $class = shift; my $self =

trouble with Rewrite

2000-12-30 Thread Michael
I have the following in a virtual host IfModule mod_rewrite.c RewriteEngine on RewriteLog "logs/rewrite.log" RewriteLogLevel 9 # redirect URL's on that exist on the secure side RewriteCond /rc/manage$2!-d RewriteRule ^(/rc/manage)(/.+).*

Re: do I really need mod_perl

2000-12-30 Thread Yung Kwong Wing
Wow! Hey, that really did explain it. Thanks. On Sat, 30 Dec 2000, John K Sterling wrote: read this: http://take23.org/whatis_mod_perl.xml it should explain all. sterling Yung Kwong Wing wrote: Hi, Sorry for asking a stupid question, but I was wondering do I really need