Hi, I’m currently using apache-2.0.55_4(Version 2 of
Apache web server with prefork MPM.) & mod_perl2-2.0.2,3(Embeds a Perl
interpreter in the Apache2 server)
Should I be using the module ModPerl::RegistryLoader or ModPerl::RegistryLoaderPreFork
?
&
Should I be using the module ModPer
As you are running your apache with prefork MPM you can use
ModPerl::RegistryPreFork which e.g. automatically changes to your
document-root which is not possible with other (threaded) MPMs.
The Loaders are not important to you!
If you start a new project and the scripts don't have to run as CGIs
Hi,
Can anyone tell me if www.modperlcookbook.org is really down (for a few
days) or I just have some problems accessing it?
I am trying to find how to return different status codes based on some
conditions.
Thanks.
Teddy
Octavian Rasnita wrote:
> Hi,
>
> Can anyone tell me if www.modperlcookbook.org is really down (for a few
> days) or I just have some problems accessing it?
it works fine for me :)
> I am trying to find how to return different status codes based on some
> conditions.
you'll have to be more sp
From: "Geoffrey Young" <[EMAIL PROTECTED]>
> > Can anyone tell me if www.modperlcookbook.org is really down (for a few
> > days) or I just have some problems accessing it?
>
> it works fine for me :)
>
Hmm, I have tried again from my computer, and from other 2 servers on my
city, but it cannot be
> I want to create a program that checks if the request conditions are met (if
> the page wanted is newer than the one in the cache) and if yes, to return
> the new page, or if it was not modified since the specified date and time,
> to return 304 Not Modified.
didn't I show how to do that the ot