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 have the following in a virtual host
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)(/.+).*
https://%{SERVER_NAME}%{REQUEST_URI}
Th
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
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
>
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 attemp
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 installing "mod_perl", I
can use the Perl interpreter just fine and I can use the CGI-bin just fine
also.
I have
On Sun, 24 Dec 2000, Shevek wrote:
> I want the parameters from the first request to be preserved into the
> subrequest.
Store in a global variable then:
$MyPackage::request = $apr;
Then access in the internal redirect.
> Another minor issue is that Apache::Request is not trivially subclassed
Hi there,
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 mod_perl directory before
Check the Eagle Book
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 Subrouti