RE: [win32] new perl/apache/mod_perl binary

2002-07-08 Thread Alessandro Forghieri
Greetings [...] there's a better way - if anyone's familiar with this, could you drop me a mine, privately? Thanks. ^ Are you sure this is *really* what you want? : (Sorry I could not resist). Cheers, alf

Perl sections

2002-07-08 Thread Mike Blazer
Hi All, I'm developing a multi-httpd configuration with the http accelerating proxy, well practically the same that was described in the Apache mod_perl guide. 2 httpd+mod_perl - one for very fast process with low need in modules, and the other one for statistics, near 1MB of modules, much

Re: Perl sections

2002-07-08 Thread Ilya Martynov
On Mon, 08 Jul 2002 18:39:04 +0400, Mike Blazer [EMAIL PROTECTED] said: MB Hi All, MB [..snip..] MB Well, the question is, what if I'll load mod_perl only for Perl MB section parsing and generating the dynamic config with MB Apache- httpd_conf method, and no real mod_perl locations - would

Re: Perl sections

2002-07-08 Thread Mike Blazer
MB Or may be there is some way to un-load mod_perl after Perl sections MB processing? If you need Perl sections only to do initial web server configuration and you do not need mod_perl features in runtime then instead of using Perl just write Perl script to generate Apache config file

QUESTION - Apache::AuthenCache

2002-07-08 Thread JOSE SOLE
Hey mod_perl users, I am trying to use Apache::AuthenCache as my authentication handler for my server. I keep getting a FORBIDDEN error each time I try to access the index.html page by only typing the URL up to the directory. Example: //FORBIDDEN ERROR http://elvis.arl.psu.edu:9092/footer

leaks with Apache::Request?

2002-07-08 Thread Dave Rolsky
It looks like there may be a memory leak with Apache::Request. I'm using version 1.0 with Perl 5.6.1, mod_perl 1.26, and Apache 1.3.26. mod_perl is statically compiled into Apache. Here's some code that I think demonstrates the leak: package My::APRTest; use strict; use

modperl-2.0 make Error on Solaris

2002-07-08 Thread Kent, Mr. John
Greetings, Following: Create the build environment % cd modperl-2.0 % perl Makefile.PL MP_AP_PREFIX=/home/stas/src/httpd-2.0.xx % make on Solaris 2.7 got: make[3]: Entering directory `/users/webuser/src/modperl-2.0/WrapXS/APR/Table' gcc -c

Re: QUESTION - Apache::AuthenCache

2002-07-08 Thread darren chamberlain
* JOSE SOLE [EMAIL PROTECTED] [2002-07-08 14:24]: I am trying to use Apache::AuthenCache as my authentication handler for my server. I keep getting a FORBIDDEN error each time I try to access the index.html page by only typing the URL up to the directory. Example: //FORBIDDEN ERROR

Re: leaks with Apache::Request?

2002-07-08 Thread Richard Clarke
Dave, Perhaps this is why from the eagle book, During the child exit phase, mod_perl invokes the Perl API function perl_destruct( ) to run the contents of END blocks and to invoke the DESTROY method for any global objects that have not gone out of scope already. So I think i'm

Re: leaks with Apache::Request?

2002-07-08 Thread Dave Rolsky
On Mon, 8 Jul 2002, Richard Clarke wrote: During the child exit phase, mod_perl invokes the Perl API function perl_destruct( ) to run the contents of END blocks and to invoke the DESTROY method for any global objects that have not gone out of scope already. Notice where it says ... for

Re: [OT] Better Linux server platform: Redhat or SuSe?

2002-07-08 Thread Ganesan M
Schoolmaster.net, 167,000 lines of Perl code, another 30,000 lines of C. Rich. How do you run 'C' code from Apache/mod_perl? G.

Re: [OT] Better Linux server platform: Redhat or SuSe?

2002-07-08 Thread Owen Scott Medd
On Mon, 8 Jul 2002, Ganesan M wrote: Schoolmaster.net, 167,000 lines of Perl code, another 30,000 lines of C. Rich. How do you run 'C' code from Apache/mod_perl? Using the perl XS interface usually... that's how we access our text analysis routines which are in C. Owen -- USMail:

Re: Perl sections

2002-07-08 Thread Perrin Harkins
Mike Blazer wrote: MB Or may be there is some way to un-load mod_perl after Perl sections MB processing? If you need Perl sections only to do initial web server configuration and you do not need mod_perl features in runtime then instead of using Perl just write Perl script to generate Apache

Re: Perl sections

2002-07-08 Thread Mike Blazer
Perrin Harkins wrote: Mike Blazer wrote: MB Or may be there is some way to un-load mod_perl after Perl sections MB processing? If you need Perl sections only to do initial web server configuration and you do not need mod_perl features in runtime then instead of using Perl just write

Re: modperl-2.0 make Error on Solaris

2002-07-08 Thread Randy Kobes
On Mon, 8 Jul 2002, Kent, Mr. John wrote: Greetings, Following: Create the build environment % cd modperl-2.0 % perl Makefile.PL MP_AP_PREFIX=/home/stas/src/httpd-2.0.xx % make on Solaris 2.7 got: make[3]: Entering directory `/users/webuser/src/modperl-2.0/WrapXS/APR/Table'

Re: Perl sections

2002-07-08 Thread Randal L. Schwartz
Mike == Mike Blazer [EMAIL PROTECTED] writes: Mike Yeah, thanks. But the whole that site has nothing to do without the Mike database :) It almost has no static content. Mike But seems like you are both right. Template would be really safer. While Mike this also breaks the nice concept of

Re: Perl sections

2002-07-08 Thread Randal L. Schwartz
Randal == Randal L Schwartz [EMAIL PROTECTED] writes: Randal using Template Toolkit. Easy'nuff. Lots of common stuff, plus unique Randal stuff. You can use tpage and then there's not even any programming: Randal httpd.conf.pages: httpd.conf.tmpl Randal tpage --define

Re: leaks with Apache::Request?

2002-07-08 Thread Joe Schaefer
Dave Rolsky [EMAIL PROTECTED] writes: [...] Here's some code that I think demonstrates the leak: package My::APRTest; use strict; use Apache::Request; sub Apache::Request::DESTROY{warn DEAD: $_[0]\n} sub handler { my $r = shift; $r =

Re: nice mod_perl statistics to share

2002-07-08 Thread Ade Olonoh
This is the netcraft.com: http://perl.apache.org/release/outstanding/stats/netcraft.html In case you're interested, here are the stats w/ the hosts per IP calculated starting at Jan 2001. I was curious to see if the increase in hosts had more to do with an increase of virtual hosts (on ISPs

Re: Perl sections

2002-07-08 Thread Mike Blazer
Randal L. Schwartz wrote: Mike == Mike Blazer [EMAIL PROTECTED] writes: Mike Yeah, thanks. But the whole that site has nothing to do without the Mike database :) It almost has no static content. Mike But seems like you are both right. Template would be really safer. While Mike this

Re: nice mod_perl statistics to share

2002-07-08 Thread Stas Bekman
Ask Bjoern Hansen wrote: On Fri, 5 Jul 2002, Stas Bekman wrote: [...] Also you must not forget that a huge amount of back-end mod_perl servers are simply invisible to these scanners because they are running behind a proxy. So I won't be surprised if the real number is at least about twice

Re: [win32] new perl/apache/mod_perl binary

2002-07-08 Thread Ron Savage
On Mon, 8 Jul 2002 00:24:30 -0500 (CDT), Randy Kobes wrote: Hi, I've placed an updated perl-5.6.1/Apache-1.3.26/mod_perl-1.27 Win32 binary package, perl-win32-bin-0.8.exe (a self-extracting archive), in ftp://theoryx5.uwinnipeg.ca/pub/other/. This Randy I cannot get this to start properly under