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: mod_bandwith like mechanism implemented in modperl?

2002-04-29 Thread Ade Olonoh
Has anyone implemented a bandwidth limiting mechanism in mod_perl? Have you looked at mod_throttle? http://www.snert.com/Software/mod_throttle. There was a thread on this last week so if you want more information you might read through that. --Ade.

Re: two distinct installations

2002-04-23 Thread Ade Olonoh
I wonder if it is possible to have two distinct installations of mod_perl on the same machine, let's say one made as root user and another as normal user. Also see Stas' article, Installing mod_perl without superuser privileges, at http://www.perl.com/pub/a/2002/04/10/mod_perl.html --Ade.

Re: mod_perl developers cookbook... a kitchen hand asks... doh!

2002-03-23 Thread Ade Olonoh
1) OK - Bareword OK not allowed while strict subs in use well, that's easy to fix - I must be missing a 'use' [which one??] I assume OK is 1 - ie TRUE OK is a constant for the HTTP return code 200. Add: use Apache::Constants ':common'; to the top of your prog. and it

Re: Trouble w/ LWP during mod_perl install

2002-03-17 Thread Ade Olonoh
Then I try running /usr/local/apache/bin/apachectl startssl Unfortunately I get the msg: Syntax error on line 206 of /usr/local/apache/conf/httpd.conf: Invalid command 'LoadModule', perhaps mis-spelled or defined by a module not included in the server configuration

Re: [ANNOUNCE] Apache::FillInForm

2002-03-17 Thread Ade Olonoh
httpd.conf: PerlModule Apache::Filter PerlModule Apache::FillInForm FilesMatch \.foo$ PerlSetVar Filter on PerlHandler Apache::RegistryFilter Apache::FillInForm /FilesMatch And then somewhere in your application: use

Re: Trouble w/ LWP during mod_perl install

2002-03-17 Thread Ade Olonoh
Most of their steps I had followed before. Now I tried to config mod_perl w/ the following config file as they had suggested: perl Makefile.PL \ APACHE_PREFIX=/usr/local/apache \ APACHE_SRC=/home/ssl/apache_1.3.22 \ SSL_BASE=/usr/local/ssl \ APACI_ARGS='--enable-module=ssl, \

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Ade Olonoh
The underscore really belongs to the C/C++ language and isn't really so much of a standard in Perl. Not true. From perlstyle: While short identifiers like $gotit are probably ok, use underscores to separate words. It is generally easier to read $var_names_like_this than