Re: Apache::SizeLimit snaffoo?

2006-08-22 Thread Philip M. Gollucci
Simon Luff wrote: > Howdy, > > Not sure if this is the right place to report an issue with > Apache::SizeLimit or not. I'm not on the mailing lists and the doc > seemed to suggest that 0.9 was maintained outside of mod_perl, but I'll > send it in the hope someone finds it useful. > > best regards

Re: I swear, [idiots unsubscribe help request]

2006-08-22 Thread Danny Brian
P.P.S You might try being nicer to volunteers you are trying to help you and not call them idiots. I suspect the subject was meant to be read, "idiot's unsubscribe help request", and not, "help me unsubscribe, idiots!" - Danny

Re: I swear, [idiots unsubscribe help request]

2006-08-22 Thread Jonathan Vanasco
On Aug 22, 2006, at 11:51 PM, Philip M. Gollucci wrote: Josh Narins wrote: I've sent a dozen messages to [EMAIL PROTECTED] [EMAIL PROTECTED] You missed the 'p'. ha ha ha ha ha

Re: I swear, [idiots unsubscribe help request]

2006-08-22 Thread Peter Farmer
On Wednesday 23 August 2006 11:51 am, Philip M. Gollucci wrote: > Josh Narins wrote: > > I've sent a dozen messages to [EMAIL PROTECTED] > > [EMAIL PROTECTED] > > You missed the 'p'. However, thats not your problem. HOTMAIL is eating > the reply message! And to top it all of it does it SILENTLY! >

Re: I swear, [idiots unsubscribe help request]

2006-08-22 Thread William A. Rowe, Jr.
Sorry, that's just hotmail making you feel like an idiot, they stopped forwarding unsubscribe requests. We've unsub'bed you, sorry bout the confusion. Bill Josh Narins wrote: > I've sent a dozen messages to [EMAIL PROTECTED] > > I never get a response. > > I try, and try, and try again. > > P

Re: I swear, [idiots unsubscribe help request]

2006-08-22 Thread Philip M. Gollucci
Josh Narins wrote: > I've sent a dozen messages to [EMAIL PROTECTED] [EMAIL PROTECTED] You missed the 'p'. However, thats not your problem. HOTMAIL is eating the reply message! And to top it all of it does it SILENTLY! Get a real ISP to host your mail or yell at them, we can do nothing about.

I swear, [idiots unsubscribe help request]

2006-08-22 Thread Josh Narins
I've sent a dozen messages to [EMAIL PROTECTED] I never get a response. I try, and try, and try again. Please help. Thanks in advance, Josh _ Got something to buy, sell or swap? Try Windows Live Expo ttp://clk.atdmt.com/MSN/go

Re: mod_perl2 installed, but scripts still slow

2006-08-22 Thread Jonathan Vanasco
look up Apache::DBI and Apache::DBI::connect_on_init that should speed up your system quite a bit - as you're connecting to the DB on every request you can also pre-cache your Petal templates on startup- if you're using the 2.19 patch, just pass in the 'cache_only' flag, and it will comp

Re: mod_perl2 installed, but scripts still slow

2006-08-22 Thread Dietmar Thal
Hi again, So i've set up a simple test case with the following code: (basically what happens all the time in my site) ## #!/usr/bin/perl -Tw use strict; use DBI; use Petal; use Time::HiRes; my $ts = [Time::HiRes::gettimeofday]; my $dbh

Re: use mod_info and mod_status via mod_perl?

2006-08-22 Thread Charlie Katz
On Tuesday 22 August 2006 4:14 pm, Michael Peters wrote: > > I have just been assuming that one can't use Perl*Handler directives > > unless using "SetHandler perl-script".  Can I still set a > > PerlAuth*Handler in a if I have "SetHandler server-status" > > there?  Hmm... > > Yes. SetHandler set

Re: use mod_info and mod_status via mod_perl?

2006-08-22 Thread Michael Peters
Charlie Katz wrote: > I did this because I don't understand how to use server configuration > directives to get the request to pass first through my perl code for > auth*tion, then have the response generated by mod_status. > > Unless... > > I have just been assuming that one can't use Perl*

Re: use mod_info and mod_status via mod_perl?

2006-08-22 Thread Charlie Katz
Thanks for the reply. Yeah, this is what I'm worried about, that I'm missing something really simple. I think I'm basically doing what you suggest; the request passes through my perl code that performs the authorization checks, and if they are satisfied, my code then calls mod_status via the (

Re: use mod_info and mod_status via mod_perl?

2006-08-22 Thread Michael Peters
Charlie Katz wrote: > On Tuesday 22 August 2006 3:37 pm, Charlie Katz wrote: >> >> SetHandler server-status >> ... >> Allow from ... >> >> >> doesn't work for me because I don't want to control access based on URI, >> but rather the custom authorization level my site assigns when a user l

Re: use mod_info and mod_status via mod_perl?

2006-08-22 Thread Charlie Katz
On Tuesday 22 August 2006 3:37 pm, Charlie Katz wrote: > > SetHandler server-status > ... > Allow from ... > > > doesn't work for me because I don't want to control access based on URI, > but rather the custom authorization level my site assigns when a user logs > in. Oops, I meant to say

use mod_info and mod_status via mod_perl?

2006-08-22 Thread Charlie Katz
Hi All, I would like to make the output of mod_info and mod_status available within my site, but I want to limit access to them by using my site's custom authorization scheme. The usual SetHandler server-status ... Allow from ... doesn't work for me because I don't want to control acc

Re: Apache::File

2006-08-22 Thread Perrin Harkins
On Tue, 2006-08-22 at 11:30 -0400, Jonathan Vanasco wrote: > Maybe i can wrap / subclass APR::File and then just add the tmpfile > functionality If you use File::Temp, they will disappear when you close the file on most OSes. Or you can do this: $r->push_handlers(PerlCleanupHandler => sub { Fi

Re: Apache::File

2006-08-22 Thread Jonathan Vanasco
On Aug 22, 2006, at 9:52 AM, Geoffrey Young wrote: Tom Schindl wrote: What does Apache::File provide other classes in mp2/standard perl don't? - $fh->tmpfile() => File::Temp this is the only one that comes to mind - Apache::File::tmpfile() creates a temporary file that lingers

Re: Apache::File

2006-08-22 Thread Geoffrey Young
Tom Schindl wrote: > Jonathan Vanasco schrieb: > >>Does anyone plan on porting Apache::File to Apache2 ? >> >>I'm using it in the Apache2::compat mode right now, but I feel uneasy >>using compat outside of my dev box >> >>I took a stab at porting the perl part of File and Symdump, but File has >>a

Re: Apache::File

2006-08-22 Thread Tom Schindl
Jonathan Vanasco schrieb: > Does anyone plan on porting Apache::File to Apache2 ? > > I'm using it in the Apache2::compat mode right now, but I feel uneasy > using compat outside of my dev box > > I took a stab at porting the perl part of File and Symdump, but File has > an xs component I know i