Re: Need help installing modperl please!!!!!!!!!!!

2004-01-17 Thread Stas Bekman
Craig McMillon wrote: When I attempt to install mod_perl-1.99_12 and apache_1.3.29 I receive an error. http://perl.apache.org/docs/2.0/user/help/help.html#Wrong_Apache_mod_perl_combination __ Stas BekmanJAm_pH --> Just

Need help installing modperl please!!!!!!!!!!!

2004-01-17 Thread Craig McMillon
When I attempt to install mod_perl-1.99_12 and apache_1.3.29 I receive an error. System: Linux evelyn 2.2.20 #1 Sat Apr 20 11:45:28 EST 2002 i686 unknown command: perl Makefile.PL APACHE_SRC=/home/cmcmillo/src/apache_1.3.29/src DO_HTTPD=1 EVERYTHING=1 MP_DEBUG=1 error messages: Reading Makef

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Stas Bekman
Dave Rolsky wrote: On Sat, 17 Jan 2004, Stas Bekman wrote: Dave Rolsky wrote: [...] The code I wrote isn't really designed so much to throttle requests as to impose quotas, so that you can say "no client can download more than X per day". This is more useful if you're delivering relatively large

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Dave Rolsky
On Sat, 17 Jan 2004, Stas Bekman wrote: > Dave Rolsky wrote: > [...] > > The code I wrote isn't really designed so much to throttle requests as to > > impose quotas, so that you can say "no client can download more than X per > > day". This is more useful if you're delivering relatively large fil

Re: Re (2): perl sections howto?

2004-01-17 Thread Stas Bekman
gerard uolaquetalestem wrote: I have also found another problem with perl sections httpd.conf configuration. I had the directives working on, but the translation does not do a specific thing: $Directory{'f:/projectes/sites/blogum.org'} = { PerlHeaderParserHandler => "module", Option

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Stas Bekman
Dave Rolsky wrote: [...] The code I wrote isn't really designed so much to throttle requests as to impose quotas, so that you can say "no client can download more than X per day". This is more useful if you're delivering relatively large files (like 200-900k RSS feeds, which I am) and you don't wa

Re: perl sections howto?

2004-01-17 Thread Stas Bekman
gerard uolaquetalestem wrote: You were right, now i have this that works PerlModule Apache2 --- $Location{'~ .*log$'} = { SetHandler => "perl-script", PerlResponseHandler => "Blogum::UserLog", PerlOptions => "+ParseHeaders", Allow =>

[Fwd: [Fwd: Apache::AuthenNTLM-2.04 Problems..]]

2004-01-17 Thread Shannon Eric Peevey
--- Begin Message --- Speeves, I've been trying to send this email to the modperl list 2 times now and have a query open with the list owner as to why my subscribed address can not post it. I would be greatful if you could fwd it to the list, since that seems to work for you. But some more b

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Dave Rolsky
On Sat, 17 Jan 2004, [EMAIL PROTECTED] wrote: > Have you looked at? > > http://www.snert.com/Software/mod_throttle/ Yes, it doesn't allow per-client throttling inside blocks, so it doesn't do what I need. In fact, my original message stated I looked at mod_throttle and mod_bandwidth. -dave

Re (2): perl sections howto?

2004-01-17 Thread gerard uolaquetalestem
I have also found another problem with perl sections httpd.conf configuration. I had the directives working on, but the translation does not do a specific thing: $Directory{'f:/projectes/sites/blogum.org'} = { PerlHeaderParserHandler => "module", Options => { All => "-

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread [EMAIL PROTECTED]
Hi, Have you looked at? http://www.snert.com/Software/mod_throttle/ HIH Best Regards, [EMAIL PROTECTED] -- /* Security is a work in progress - dreamwvr */ # 48 69 65 72 6F 70 68 61 6E 74 32 # Note: To begin Journey type man afterboot,man help,man

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Perrin Harkins
Dave Rolsky wrote: It uses DB_File to store the data. I should probably add locking, or maybe just an option to use BerkeleyDB.pm if available, and use that modules built-in locking. Yeah, DB_File is definitely not safe unless you are locking and untying it after every request. MLDBM::Sync does

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Randal L. Schwartz
> "Dave" == Dave Rolsky <[EMAIL PROTECTED]> writes: Dave> If you put the thing on CPAN, so others could use it for applications, Dave> that'd be great. But I can't tell people "go cut and paste this code Dave> listing on Randal's site"! I've finally figured out the CPAN trick. Up to just re

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Dave Rolsky
On Sat, 17 Jan 2004, Randal L. Schwartz wrote: > Perrin> By the way, did you look at Randal's throttle code? (Posted as > Perrin> Stonehenge::Throttle, I believe.) That's what I started with last > Perrin> time I needed to do this. It worked well over NFS for a cluster. > > And I'm thinking abo

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Perrin Harkins
Randal L. Schwartz wrote: And I'm thinking about rewriting that using DBD::SQLite for the tracker, rather than my ad-hoc "use the filesystem as a database" code from before. Actually, that was my favorite part of it. The fact that it used tiny atomic writes without locking made it work over NFS.

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Randal L. Schwartz
> "Perrin" == Perrin Harkins <[EMAIL PROTECTED]> writes: Perrin> By the way, did you look at Randal's throttle code? (Posted as Perrin> Stonehenge::Throttle, I believe.) That's what I started with last Perrin> time I needed to do this. It worked well over NFS for a cluster. And I'm thinkin

Re: Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Perrin Harkins
Dave Rolsky wrote: So I wrote the code I needed, and I'd like to release it. I'm thinking of calling it Apache::Quota, since it does limits of total amount downloaded, as opposed to speed limits. OTOH, with the right config (30k per 30s or something), it does amount to speed limiting, so maybe Ap

Bandwidth limiting module: Apache::Quota

2004-01-17 Thread Dave Rolsky
So I wrote the code I needed, and I'd like to release it. I'm thinking of calling it Apache::Quota, since it does limits of total amount downloaded, as opposed to speed limits. OTOH, with the right config (30k per 30s or something), it does amount to speed limiting, so maybe Apache::Bandwidth (my

Re: Bandwidth limiting (per client or global)?

2004-01-17 Thread Dave Rolsky
On Sat, 17 Jan 2004, Ged Haywood wrote: > > I looked for a flexible bandwidth limiting solution that would let me > > apply limits to a location, vhost, the whole server, and on either a > > per-client or global basis. > > > > I couldn't find one, but I may have missed something obvious. I know t

Re: [Fwd: NTLM Authentcation]

2004-01-17 Thread Shannon Eric Peevey
Sorry to trouble you but you're name has cropped up in many modperl forums I've been researching for a solution to my problem, and I also note you're listed as the author of Apache::AuthenNTLM on CPAN but not in the documentation. I have just taken over maintenance :) There is nothing in the d

Re: Re: perl sections howto?

2004-01-17 Thread gerard uolaquetalestem
You were right, now i have this that works PerlModule Apache2 --- $Location{'~ .*log$'} = { SetHandler => "perl-script", PerlResponseHandler => "Blogum::UserLog", PerlOptions => "+ParseHeaders", Allow => "from all", };

Re: Bandwidth limiting (per client or global)?

2004-01-17 Thread Ged Haywood
Hi there, On Fri, 16 Jan 2004, Dave Rolsky wrote: > I looked for a flexible bandwidth limiting solution that would let me > apply limits to a location, vhost, the whole server, and on either a > per-client or global basis. > > I couldn't find one, but I may have missed something obvious. I know

[ANNOUNCE] perl 5.8.3

2004-01-17 Thread Stas Bekman
nicholas writes "The Perl 5 developer team is pleased to announce the Perl Release 5.8.3, the third maintenance release of Perl 5.8." Read on for details. http://use.perl.org/article.pl?sid=04/01/16/189250 __ Stas BekmanJAm