mod_perl 2 newbie

2006-02-07 Thread JupiterHost.Net
Hello List! I'd like to build mod_perl/2.0.2 statically built into apache as per: http://perl.apache.org/docs/2.0/user/install/install.html#Static_mod_perl However instead of making apache2 as part of mod_perl2 I'd like to 1) configure/make/etc mod_perl 2 2) add other modules 3) build apache

Re: mod_perl 2 newbie

2006-02-07 Thread Jonathan Vanasco
There's no point to build MP2 into apache there's barely any difference in performance between the static and module versions most people i know just run the module version - its far easier to set up , and you don't have to rebuild everything on every new release

Re: mod_perl 2 newbie

2006-02-07 Thread JupiterHost.Net
Jonathan Vanasco wrote: There's no point to build MP2 into apache there's barely any difference in performance between the static and module versions most people i know just run the module version - its far easier to set up , and you don't have to rebuild everything on every new releas

Re: mod_perl 2 newbie

2006-02-07 Thread John ORourke
I don't know about a manual build but some installs put the perl stuff in file(s) in /usr/local/apache2/conf.d/, so it may not be mentioned in httpd.conf. JupiterHost.Net wrote: grep -i perl /usr/local/apache2/conf/httpd.conf have no output. So how do I tell if mod_perl 2 is compiled into

Re: mod_perl 2 newbie

2006-02-07 Thread Jie Gao
On Tue, 7 Feb 2006, JupiterHost.Net wrote: > Date: Tue, 07 Feb 2006 13:09:06 -0600 > From: JupiterHost.Net <[EMAIL PROTECTED]> > To: modperl@perl.apache.org > Subject: mod_perl 2 newbie > > Hello List! > > I'd like to build mod_perl/2.0.2 statically

Re: mod_perl 2 newbie

2006-02-08 Thread JupiterHost.Net
John ORourke wrote: I don't know about a manual build but some installs put the perl stuff in file(s) in /usr/local/apache2/conf.d/, so it may not be mentioned in httpd.conf. Thanks John for the info, that doesn't appear to be it but I'm still looking to see if it was added in a different

Re: mod_perl 2 newbie

2006-02-08 Thread JupiterHost.Net
Diona Kidd wrote: > I believe that the command you shared will build MP2 as a module by > default and you will see mod_perl.so in the modules directory. Then just Sure enough /usr/local/apache2/moduels/mod_perl.so is there I'm still stuck on apache one's setup Thanks Diona! > add the LoadModu

Re: mod_perl 2 newbie

2006-02-08 Thread JupiterHost.Net
This is what I do to build it: In apache src dir: ./configure \ --prefix="/usr/local/apache_2.0.54+mod_perl" \ --enable-so \ --enable-proxy \ --enable-ssl \ --enable-proxy-http \ --with-mpm=prefork \ --enable-modules=most \ --enable-mods-shared=max make install

Re: mod_perl 2 newbie

2006-02-08 Thread JupiterHost.Net
JupiterHost.Net wrote: Diona Kidd wrote: > I believe that the command you shared will build MP2 as a module by > default and you will see mod_perl.so in the modules directory. Then just Sure enough /usr/local/apache2/moduels/mod_perl.so is there I'm still stuck on apache one's setup Than

Re: mod_perl 2 newbie

2006-02-08 Thread Tom Schindl
May I suggest reading SIMPLY the INSTALL-File coming with mod-perl where it reads: ---8<--- Simple config: LoadModule perl_module modules/mod_perl.so #PerlModule Apache::compat # your config comes here For a more detailed version (including more options) refer to:

Re: mod_perl 2 newbie

2006-02-08 Thread JupiterHost.Net
Tom Schindl wrote: May I suggest reading SIMPLY the INSTALL-File coming with mod-perl where it reads: Thanks, I did look at those, what I was looking for was a configure option to add those for you without having to do the LoadModule manually or via a apache2/bin/apxs command. Mod_perl 1