Mod_Perl

2006-04-14 Thread Paul Harrison
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

Re: Mod_Perl

2006-04-14 Thread Tom Schindl
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

ModPerlCookBook.org

2006-04-14 Thread Octavian Rasnita
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

Re: ModPerlCookBook.org

2006-04-14 Thread Geoffrey Young
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

Re: ModPerlCookBook.org

2006-04-14 Thread Octavian Rasnita
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

Re: ModPerlCookBook.org

2006-04-14 Thread Geoffrey Young
> 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