Re: Apache::Symbol-calling none-can('undef_functions')

2002-02-07 Thread Geoffrey Young
Sreeji K Das wrote: Hi The following perl -MDevel::Symdump -e '$t = Devel::Symdump-new(main); print $t-packages, \n;' in perl 5.6.1 returns none as one the packages ! Apache::Symbol (mod_perl-1.26) seems to call a 'can('undef_function..' on this values as a result, a fatal error is

Re: Apache::Symbol-calling none-can('undef_functions')

2002-02-07 Thread Geoffrey Young
Sreeji K Das wrote: Hi Well, it's only a small part of my big problem :-( I'm trying to get PerlFreshRestart working. I had been banging my head against it for almost 5 days I was thinking about preparing a small test case posting. Well I want apache to load all my perl stuff on

Re: Apache::DBI

2002-02-06 Thread Geoffrey Young
Stathy G. Touloumis wrote: I thought I saw a posting on how to retrieve an independent database handle from Apache::DBI using a certain method call (instead of from the shared $dbh for the child). Does anyone know where this documentation may reside (If it is possible). I'm not sure what

Re: Apache::DBI

2002-02-06 Thread Geoffrey Young
Stathy G. Touloumis wrote: I'm not sure what you mean, really, but perhaps you mean dbi_connect_method? Did you mean specifying this argument like so ? DBI-connect( $driver, $u, $p, { dbi_connect_method= 'connect' } ); yes, you never call Apache::DBI-connect() directly. I will

Re: response code under Apache::Registry?

2002-02-04 Thread Geoffrey Young
Peter Beardsley wrote: This is kind of a bizarre question, but I was wondering if it was technically possible to set the response code of a script running under Apache::Registry. The way I usually see it being set is the return value of the handler routine, but is there any way to set it?

Re: Location Directives Problem

2002-01-31 Thread Geoffrey Young
The problem is that the Location directives below are acting more like LocationMatch directives. For example, if I hit the URL '/admin/workflow/media', I would expect the '/' Location's handlers to handle the request. But they're not. Instead, it's the '/media' Location handlers. It's as

[RFC] Apache::HEADRegistry

2002-01-30 Thread Geoffrey Young
or features at this time, but consider this module alphaware. SEE ALSO perl(1), mod_perl(3), Apache(3), Apache::Registry(3), Apache::RegistryNG AUTHOR Geoffrey Young [EMAIL PROTECTED] COPYRIGHT Copyright (c) 2002, Geoffrey Young. All rights reserved. This module is free software. It may

Re: Apache::Registry HEAD fix

2002-01-29 Thread Geoffrey Young
Jean-Michel Hiver wrote: Hi mod_perl Geeks, A few weeks ago I raised the issue of Apache::Registry issuing incorrect headers in the case of a HEAD request, as it's also returning the headers. Geoffrey Young came up with a subclass of Apache::RegistryNG, and I forgot

Re: Tracing script with problem

2002-01-25 Thread Geoffrey Young
[snip] Another question, do you (or anyone else for that matter) know how the accesslog works? (and also why it does work like it does) It seems it prints after the request is done, otherwise could that easily be used for checking the parameters, and not only loging. You probably

Re: PerlAddVar alternative in v1.21

2002-01-25 Thread Geoffrey Young
Vladislav Shchogolev wrote: Hello, I'm using mod_perl 1.21 on a host where i don't have the option of upgrading mod_perl. Is there an alternative way to use PerlSetVar to simulate the effect of PerlAddVar. I want to create a variable, namely MasonCompRoot, that has two entries in it. I

Re: Cross-site scripting vulnerability in Apache::Util

2002-01-24 Thread Geoffrey Young
HTML::Entities correctly turns \x8b into #139; while Apache::Util leaves it untouched. That character is treated by certain buggy browsers as and can thus be used to fake tags. Note that just because your browser isn't vulnerable (ie it doesn't buy the fakes h1) doesn't mean that the

Re: Cross-site scripting vulnerability in Apache::Util

2002-01-24 Thread Geoffrey Young
However I'm not sure your patch does the right thing re UTF-8, unless there's some magic involved that I'm not seeing :-/ I'm no expert on how to deal with UTF-8 in C (or even in Perl) but it looks like you're only addressing 8bit encodings. ok, after some to and fro with robin over on

Re: Cross-site scripting vulnerability in Apache::Util

2002-01-24 Thread Geoffrey Young
Stas Bekman wrote: Geoffrey Young wrote: However I'm not sure your patch does the right thing re UTF-8, unless there's some magic involved that I'm not seeing :-/ I'm no expert on how to deal with UTF-8 in C (or even in Perl) but it looks like you're only addressing 8bit encodings

[ANNOUNCE] Apache::Clean

2002-01-23 Thread Geoffrey Young
or environments. It requires PERL_LOG_API=1, PERL_FILE_API=1, and maybe other hooks to function properly. FEATURES/BUGS No known bugs or features at this time... SEE ALSO perl(1), mod_perl(3), Apache(3), HTML::Clean(3), Apache::Compress(3), Apache::Filter(3) AUTHORS Geoffrey Young [EMAIL

Re: disable mod_perl for certain virtual hosts/folders

2002-01-22 Thread Geoffrey Young
[EMAIL PROTECTED] wrote: On my Apache mod_perl is generally enabled with the following statement: Directory /data/apache Files ~ \.pl$ SetHandler perl-script PerlHandler Apache::Registry Options +ExecCGI /Files /Directory you might have better luck

Re: disable mod_perl for certain virtual hosts/folders

2002-01-22 Thread Geoffrey Young
Directory /data/apache AddHandler .pl perl-script PerlHandler Apache::Registry Options +ExecCGI /Directory thnx, but: This part doesnt make the problem. mod_perl works like a charm. Problem is how to deactivate it for a certain location ? well, only .pl files will be

Re: caching

2002-01-18 Thread Geoffrey Young
Miroslav Madzarevic wrote: How can kill If-Modified-Since and E-Tag incoming headers ? Do I do it in my custom PerlInitHandler module ? I have a development server and I don't wish anything to be cached (304 messages, not modified). Right now my Cookies are not set because of this.

Re: mod_deflate problem with chunked encoding

2002-01-17 Thread Geoffrey Young
Philip Mak wrote: The following webpage on a mod_deflate enabled server is not working correctly in some browsers: [OT stuff snipped] did you email the right list? I'm not sure why mod_deflate and mod_accel problems keep popping up here of late, but maybe there's some mis-information

Re: mod_deflate problem with chunked encoding

2002-01-17 Thread Geoffrey Young
Philip Mak wrote: On Thu, Jan 17, 2002 at 07:38:17PM -0500, Geoffrey Young wrote: Philip Mak wrote: The following webpage on a mod_deflate enabled server is not working correctly in some browsers: [OT stuff snipped] did you email the right list? I figured that the mod_perl mailing

Re: formmail spammers

2002-01-14 Thread Geoffrey Young
Right, and point them to NMS for a replacement too. so, we've been having a spam problem lately due to formmail.pl. this thread prompted me to scan all our user directories and note people who had formmail.pl sitting around. I would have liked a link to send them to for the NMS replacement,

Re: Request Limiter

2002-01-14 Thread Geoffrey Young
Ken Miller wrote: There was a module floating around a while back that did request limiting (a DOS preventional tool). I've searched the archives (unsuccessfully), and I was wondering if anyone knows what the heck I'm talking about. maybe you had Stonehenge::Throttle in mind?

Re: Questions on note_basic_auth_failure and get_basic_auth_pw

2002-01-11 Thread Geoffrey Young
The Sapphire Cat wrote: Documentation for these functions reads as follows: $r-get_basic_auth_pw If the current request is protected by Basic authentication, this method will return 0, otherwise -1. [snip] ok, that's unclear (and not 100% correct, either). I'd change it to: If the

Re: Altering ENV from a PerlFixupHandler

2002-01-10 Thread Geoffrey Young
Benoit Caron wrote: I'm trying to set a way of passing some environnement variables from my front-end server to my back-end so that my Registry or PerlRun script run unchanged. What I've done is that I've modified my frontend to add, with mod_rewrite, the environnement data I need (REFERER

Re: Configuration loading twice - how to cope?

2002-01-10 Thread Geoffrey Young
William R Ward wrote: The Apache server processes its config file twice when starting up, and our code doesn't react well to that. On the first pass, everything initializes hunky-dorily (if that's a word), but on the second pass lots of stuff that is assumed to be loaded in memory doesn't

Re: Error log executing scripts?

2002-01-04 Thread Geoffrey Young
Magnús Þór Jónsson wrote: Hello, I was wondering if there is any way of making the error log in Apache to execute a script when an error is occurred, perhaps instead of writing the error directly to the log. For example, if there is a image missing Apache excutes a script that generates

Re: Error log executing scripts?

2002-01-04 Thread Geoffrey Young
however, althoughit is possible to intercept the actual errors Apache (and mod_perl) generates, it is rather complex, and really not the proper approach here. Really? I would have thought it could make an interesting caching technique - on a 404 you try and generate the file, and

Re: Error log executing scripts?

2002-01-04 Thread Geoffrey Young
Tatushiro er, Tastuhiko I mean. (sorry :) --Geoff

Re: Problems with cookies in Apache::AuthCookie

2002-01-04 Thread Geoffrey Young
Øyvind Gjerstad wrote: Geoffrey Young wrote: [Fri Jan 4 14:23:46 2002] [error] credential_0 ogj [Fri Jan 4 14:23:46 2002] [error] credential_1 xxx [Fri Jan 4 14:23:46 2002] [error] ses_key ogj:2002-01-04-14-23-46:2002-01-05-14 -23-46:54f7553ccb96d3af70abe449f053ee3d [Fri Jan 4

Re: RFC: Apache::Handlers

2002-01-03 Thread Geoffrey Young
use Apache::Handlers qw(CLEANUP PerlCleanupHandler); our $global; our $other_global : PerlCleanupHandler; my $lexical : PerlLogHandler(sub { print STDERR $lexical\n; }); CLEANUP { our $global = undef; }; heh, seems like you should

[RFC] Apache::MIMEMapper

2002-01-02 Thread Geoffrey Young
and associated directives are necessary. Should you need these directives, you can install Apache::MIMEMapper as a PerlFixupHandler instead. SEE ALSO perl(1), mod_perl(1), Apache(3) AUTHORS Geoffrey Young Elt[EMAIL PROTECTED]gt Paul Lindner Elt[EMAIL PROTECTED]gt Randy Kobes Elt[EMAIL

Re: PerlWarn and syslog

2001-12-20 Thread Geoffrey Young
If you just print to STDERR you might want to look at Apage::LogSTDERR on CPAN. I took at look on CPAN and was unable to find this module or any reference to it. Any idea if it has been merged into some other module or if it has just gone away? over the years, the folks at critical

Re: [DIGEST] mod_perl digest 2001/12/15

2001-12-19 Thread Geoffrey Young
in the mod_perl world... With many thanks to Geoffrey Young for his work on this digest in the past, I will try and continue the job for a while. the thing I like about this group is that everyone has the same goals in mind. Thanks, James, for picking up the torch - everyone will benefit from

Re: using Apache::ReadConfig to configure from perl scripts

2001-12-18 Thread Geoffrey Young
Issac Goldstand wrote: Hi all... I'm trying to put the finishing touches on Apache::UploadMeter, but am running into a minor problem. Due to the complexity of the configuration, I'm trying to use the Apache::ReadConfig namespace from mod_perl_start.pl to dynamically configure the

Re: mod_perl book status

2001-12-18 Thread Geoffrey Young
From one of Geoffrey's digests: You can disable Apache::DBI database handle persistence on the fly by changing DBI-connect() to the undocumented 5 parameter call $dbh = DBI-connect($dbase, $user, $pass, \%attr, undef, connect) || die $DBI::errstr;

Re: submit-data and chained handlers

2001-12-17 Thread Geoffrey Young
Perrin Harkins wrote: Apache::RequestNotes don't work because Apache::Registry expect to read the POST/PUT-data from STDIN. It's important that the cgi-scripts run unmodified and without any notice of their unnaturally environment. I don't think there's any way around the fact

RE: Apache::SizeLimit Exit is Delayed

2001-12-13 Thread Geoffrey Young
Geoff wrote: what about $r-headers_out-add(Connection = 'close'); I tried each of these changes in turn. Neither worked to immediately exit the child. I never saw that either of them would exit the child at all but I may not have kept them running long enough. hmph... are

Re: Apache::SizeLimit Exit is Delayed

2001-12-12 Thread Geoffrey Young
Perrin Harkins wrote: That was it. The child exited immediately when I hit the limit with KeepAlive Off. Now the question is: Is there a way to force an exit even with KeepAlive On? As Jay already pointed out, you usually don't want KeepAlive on with mod_perl. However, you could

Re: [RFC] Apache::CacheContent - Caching PerlFixupHandler

2001-12-11 Thread Geoffrey Young
Paul Lindner wrote: [snip] I suppose that one could put the whole uri-cachefile mapping into a custom PerlTransHandler and leave Apache::CacheContent as-is.. yeah, I think that we're starting to talk about two different approaches now. the cool thing about the current logic is that no

Re: Apache::can_stack_handlers()

2001-12-11 Thread Geoffrey Young
Issac Goldstand wrote: What version of mod_perl starts supporting this? egads, that's old... looks like 0.95 http://www.bitmechanic.com/mail-archives/modperl/Mar1997/0145.html --Geoff

Re: chroot .. jail2 || other .pm ?

2001-12-11 Thread Geoffrey Young
[EMAIL PROTECTED] wrote: hi, Was digging around CPAN looking for a module that would allow the following.. user is authenticated .. via web.. ok got that.. If they are successful that are chroot or jailed or caged in a specific directory which becomes their root.. eg ..

Re: Detecting and linking to Apache::Status

2001-12-07 Thread Geoffrey Young
Randy J. Ray wrote: For the next release of my RPC::XML package, I plan to roll out a status tracker akin to Apache::Status in mod_perl, only to monitor/examine the RPC servers being managed by the mod_perl-ennabled Apache server. I would like to have the main page of this

Re: Apache::Filter Help Please!!

2001-12-07 Thread Geoffrey Young
I tried out your config and handlers pretty much verbatim and got them to work just fine. the only real change was that I needed to comment out return $status unless $status == OK; from filter one, since $fh is $r-filename for the first filter, which brings up 404 when the file is

Re: Apache::Filter Help Please!!

2001-12-07 Thread Geoffrey Young
Jason Hall wrote: ok, that make sense, so I modified my filter1 to just register the filter, print out some text, and return ok, that's it. and it still doesn't print anything if filter2 comes after it? Does that sound wrong to anybody but me? try this: package One; use

Re: Apache::Filter Help Please!!

2001-12-07 Thread Geoffrey Young
Jason Hall wrote: AHAH!!! I found it.. thanks, your example showed the difference. What it was is that I was sending my header before my final filter, which as I now am guessing, maps STDOUT, which this needs. well, you should be able to print your headers from any filter in the chain

Re: a new modperl book: mod_perl Developer's Cookbook

2001-12-06 Thread Geoffrey Young
Stas Bekman wrote: SAMS will publish the new mod_perl Developer's Cookbook by Geoffrey Young, Paul Lindner and Randy Kobes in January, 2002. You can find more info at http://www.modperlcookbook.org/. Great work guys! thanks for the mention Stas - a bit ahead of schedule but appreciated

Re: a new modperl book: mod_perl Developer's Cookbook

2001-12-06 Thread Geoffrey Young
Advance ordered via Amazon.com! Actually I did it awhile ago when I first found out that there was a new mod_perl. cool. BTW, if you do pre-order, following the amazon link from our homepage results in a little extra for us authors (which helps pay for things like domain registration fees

Re: Oddity w/ mod_auth_digest

2001-12-05 Thread Geoffrey Young
The password file was created from the current apache version's htpasswd via: htpasswd -c -m -b lembark foobar; you know you need to use htdigest when creating a digest password entry, right? which I thought should have created the proper entry. take a look at it. digest

RE: file upload process

2001-12-04 Thread Geoffrey Young
-Original Message- From: El Capitan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 04, 2001 10:46 AM To: [EMAIL PROTECTED] Subject: file upload process [snip] Is there some way to capture the download stream (when its actually downloading) and begin a display process back

Apache::Fake

2001-11-28 Thread Geoffrey Young
FWIW, just saw this recent CPAN upload on use.perl.org and haven't seen it announced here. I breezed through the code and it looks pretty complete... http://search.cpan.org/search?dist=Apache-Fake-0.9 --Geoff

RE: Apache::Registry HTTP HEAD feature fix ;-)

2001-11-27 Thread Geoffrey Young
-Original Message- From: Jean-Michel Hiver [mailto:[EMAIL PROTECTED]] Sent: Monday, November 26, 2001 9:38 AM To: [EMAIL PROTECTED] Subject: Re: Apache::Registry HTTP HEAD feature fix ;-) well, I just gave you a patch that worked :) basically, it only provides a solution

RE: Apache::Registry HTTP HEAD feature fix ;-)

2001-11-27 Thread Geoffrey Young
-Original Message- From: Jean-Michel Hiver [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 27, 2001 9:02 AM To: [EMAIL PROTECTED] Subject: Re: Apache::Registry HTTP HEAD feature fix ;-) this should work for scripts that only use print() (without the patch I sent

[Job Seeker]

2001-11-27 Thread Geoffrey Young
hi all... well, with this economy and all I guess it's a bad time to look for a new job, but... things here at covad are taking a turn for the worse. In fact, covad stopped using mod_perl some time ago, and I no longer have the internal corporate sponsorship and support I once had. Thus,

RE: Apache::Registry HTTP HEAD feature fix ;-)

2001-11-26 Thread Geoffrey Young
-Original Message- From: Jean-Michel Hiver [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 25, 2001 7:43 AM To: [EMAIL PROTECTED] Subject: Apache::Registry HTTP HEAD feature fix ;-) Hi guys, As promised I have been producing a fix for Apache::Registry. The module is

RE: Apache::Registry HTTP HEAD feature fix ;-)

2001-11-26 Thread Geoffrey Young
-Original Message- From: Jean-Michel Hiver [mailto:[EMAIL PROTECTED]] Sent: Monday, November 26, 2001 9:18 AM To: [EMAIL PROTECTED] Subject: Re: Apache::Registry HTTP HEAD feature fix ;-) well, you should be subclassing Apache::RegistryNG instead of Apache::Registry - then

RE: PerlModule not updating %INC

2001-11-21 Thread Geoffrey Young
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 6:43 PM To: David Pisoni; [EMAIL PROTECTED]; Robert Landrum Subject: Re: PerlModule not updating %INC [snip] It sounds like this is a real bug with PerlModule. This was

[SOT] EmuMail and mod_perl

2001-11-21 Thread Geoffrey Young
hi all... just curious if anyone out there has run EmuMail's WebMail under mod_perl. I've been tasked with evaluating a legacy system here and the feasability of porting the installation from FastCGI to mod_perl in the hopes of reducing the strain on the box and speeding things up a bit.

RE: PerlModule not updating %INC

2001-11-21 Thread Geoffrey Young
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 11:01 AM To: Geoffrey Young; [EMAIL PROTECTED]; David Pisoni Subject: Re: PerlModule not updating %INC I wonder if this has something to do with the multiple init thing

RE: PerlModule not updating %INC

2001-11-21 Thread Geoffrey Young
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 11:12 AM To: Geoffrey Young; [EMAIL PROTECTED]; David Pisoni Subject: Re: PerlModule not updating %INC IIRC, I ran a test with only httpd.conf.default with only

RE: PerlModule not updating %INC

2001-11-21 Thread Geoffrey Young
ok, here was my test... [geoff@mainsheet apache]$ diff -u conf/httpd.conf.default conf/httpd.conf --- conf/httpd.conf.default Wed Nov 21 02:00:16 2001 +++ conf/httpd.conf Wed Nov 21 11:59:35 2001 @@ -38,6 +38,8 @@ # server as /usr/local/apache/logs/foo.log. # +PerlModule My::Foo +

RE: $r-set_handlers and $R-push_handlers

2001-11-20 Thread Geoffrey Young
set_handlers() and push_handlers() apply to the current request (except for the PerlRestartHandler and other handlers that are not request-oriented). it really doesn't make sense to have them apply only to a Location or otherwise - if you want them to apply only to a certain location use

RE: Doing Authorization using mod_perl from a programmers perspective

2001-11-16 Thread Geoffrey Young
my point was that this solves the problem of using the ip address in the md5 hash when the client is behind a proxy server. This does not solve the problem: IP address of users behind Proxy is not unique. The User Agent is not unique either. Using User Agent solves nothing, and

RE: Doing Authorization using mod_perl from a programmers perspec tive

2001-11-16 Thread Geoffrey Young
the cool thing about the MD5 hashing scheme is that any would-be hacker needs to know the fields you are hashing in order to have a chance at creating a like hash. so, if you use stuff transmitted in the clear (like username, sessionid, some bogus piece of info not used, and MD5

RE: [DIGEST] mod_perl digest 2001/09/22

2001-11-16 Thread Geoffrey Young
-Original Message- From: Adam Prime [mailto:[EMAIL PROTECTED]] Sent: Friday, November 16, 2001 3:29 PM To: 'Geoffrey Young' Subject: RE: [DIGEST] mod_perl digest 2001/09/22 have you stopped doing these things? CC'd to the list, in case anyone else is wondering... I took

RE: Apache::DBI usage

2001-11-15 Thread Geoffrey Young
-Original Message- From: Andrei A. Voropaev [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 15, 2001 6:44 AM To: [EMAIL PROTECTED] Subject: Apache::DBI usage Hi! Apache::DBI is great module of course because it makes things transparent. But it also makes things

RE: Antwort: http or https in URL?

2001-11-06 Thread Geoffrey Young
sub savelink ($modul: string min 4 max 4, $page: string default index.html) { my $r = Apache-request; my $session_id = $r-pnotes('sessionid'); my $uri = Apache::URI-parse($r); my $hostinfo = $uri-hostinfo; my $scheme = $uri-scheme; my $url = $scheme . '://' .

RE: PerlRequire/PerlModule and %INC

2001-11-06 Thread Geoffrey Young
hi guys... I know this is from a while ago, but I'm still seeing the double init thing with PerlModule and PerlRequire on server restarts. I've tried two different 5.6.1 installs with current CVS. can somebody verify that I'm not seeing things? the test I was using was the default

RE: [OT] P3P policies and IE 6 (something to be aware of)

2001-10-30 Thread Geoffrey Young
Here's how you set up a compact P3P policy under mod_perl: #This policy will make IE6 accept your cookies as a third party, but you should generate # your own policy using one of the apps at the W3C site. my $p3p_compact_policy = CP=\ALL DSP COR CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa

RE: When to use 'use' for accessing modules?

2001-10-24 Thread Geoffrey Young
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001 1:41 AM To: Steve Piner Cc: Chris Allen; [EMAIL PROTECTED] Subject: Re: When to use 'use' for accessing modules? Steve Piner wrote: Perrin Harkins wrote: Chris

RE: When to use 'use' for accessing modules?

2001-10-24 Thread Geoffrey Young
Is $ENV{foo}='bar'; in startup.pl equivalent to PerlSetEnv foo bar in httpd.conf? Yes. well, not exactly. PerlSetEnv sets the subprocess_env table. as a side effect of that, you get PerlSetEnv values in %ENV if you have PerlSetupEnv On. The other way to look at it

RE: stacked handlers return vals

2001-10-22 Thread Geoffrey Young
what is wrong with DONE? DONE immediatly closes the client connection and starts the logging phase. if you have sent the content already then there is nothing to worry about. the call to send_http_header will pick up on the any status you set previously or use the default HTTP_OK

RE: stacked handlers return vals

2001-10-21 Thread Geoffrey Young
-Original Message- From: Mark Maunder [mailto:[EMAIL PROTECTED]] Sent: Sunday, October 21, 2001 1:49 PM To: Nikolaus Rath Cc: [EMAIL PROTECTED] Subject: Re: stacked handlers return vals Nikolaus Rath wrote: * Mark Maunder [EMAIL PROTECTED] wrote: Hi, If I'm using

RE: Excellent article on Apache/mod_perl at eToys

2001-10-19 Thread Geoffrey Young
-Original Message- From: Gunther Birznieks [mailto:[EMAIL PROTECTED]] Sent: Friday, October 19, 2001 6:47 AM To: mod_perl List Cc: Template Toolkit List Subject: Re: Excellent article on Apache/mod_perl at eToys Yeah we really enjoyed it over here. I think it's really

RE: Selectively writing to the access log

2001-10-19 Thread Geoffrey Young
-Original Message- From: Rodney Broom [mailto:[EMAIL PROTECTED]] Sent: Friday, October 19, 2001 3:14 PM To: [EMAIL PROTECTED] Subject: Re: Selectively writing to the access log From: Rob Nagler [EMAIL PROTECTED] I don't think you can change the access log format, but you

RE: [request] modperl mailing lists searchable archives wanted

2001-10-09 Thread Geoffrey Young
I've just updated the archives list at http://perl.apache.org/#maillists, so here is what we have: dev@@perl.apache.org - 2.5, but their search engines suck [EMAIL PROTECTED] - none [EMAIL PROTECTED] - none [EMAIL PROTECTED] - none [EMAIL PROTECTED] - 1 as far as I know,

RE: Setting Perl-stuff inside Perl section

2001-10-05 Thread Geoffrey Young
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Friday, October 05, 2001 2:26 PM To: Scott Lanning; [EMAIL PROTECTED] Subject: Re: Setting Perl-stuff inside Perl section @PerlModule = qw(Blah); # add others to the list Might as well just say use

RE: CGI.pm params not being cleared?

2001-10-03 Thread Geoffrey Young
-Original Message- From: Ken Williams [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 02, 2001 6:24 PM To: Geoffrey Young; 'Perrin Harkins ' Cc: '[EMAIL PROTECTED] ' Subject: RE: CGI.pm params not being cleared? Hi all, It doesn't much matter whether you're using stacked

RE: Keeping POST information between request phases

2001-10-01 Thread Geoffrey Young
-Original Message- From: Alin Simionoiu [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 30, 2001 7:04 PM To: Thomas Eibner Cc: Issac Goldstand; [EMAIL PROTECTED] Subject: Re: Keeping POST information between request phases I tried instance, but is not working is you want

RE: generic symbol problems with LogFile

2001-10-01 Thread Geoffrey Young
-Original Message- From: Bryan T. Schmidt [mailto:[EMAIL PROTECTED]] Sent: Monday, October 01, 2001 1:00 PM To: Bryan T. Schmidt Cc: [EMAIL PROTECTED] Subject: Re: generic symbol problems with LogFile [snip] Bryan T. Schmidt wrote: This seems funny to me... I have

RE: CGI.pm params not being cleared?

2001-10-01 Thread Geoffrey Young
-Original Message- From: Perrin Harkins To: Alex Harper Cc: Daniel; [EMAIL PROTECTED] Sent: 10/1/01 11:35 PM Subject: Re: CGI.pm params not being cleared? Alex Harper wrote: Aha! That's where the problem lies. I had recently added: PerlCleanupHandler +Apache::Sizelimit

RE: Apache::AuthCookie

2001-09-28 Thread Geoffrey Young
-Original Message- From: Recendez, Ray [mailto:[EMAIL PROTECTED]] Sent: Friday, September 28, 2001 1:45 PM To: '[EMAIL PROTECTED]' Subject: Apache::AuthCookie Does anyone know where I can find documentation to install and configure Apache::AuthCookie? The docs that come

[DIGEST] mod_perl digest 2001/09/22

2001-09-25 Thread Geoffrey Young
-- mod_perl digest September 9, 2001 - September 22, 2001 -- Recent happenings in the mod_perl world... Features

RE: Updating $r-connection-aborted before $r-print() ?

2001-09-20 Thread Geoffrey Young
Hey Geoff, for efficiency, my final code for detecting a client abort is: [snip] where $self is the ASP object ... I looked at the IO::Select-new() and it looked pretty hairy, so I checked connection-aborted status first in case it was already set. good idea. thanks for following up...

RE: [OT] New Micro$oft vulnerability?

2001-09-19 Thread Geoffrey Young
Whoops! Returning OK terminates the PostReadRequest phase, apparently. Changing that to return DECLINED made PerlSetEnv work again. Sorry, Nat Before reading your post I had implemented a similar handler, although I put it in as a TransHandler, so I guess I should move it to

RE: [OT] New Micro$oft vulnerability?

2001-09-19 Thread Geoffrey Young
-Original Message- From: Lyle Brooks To: Geoffrey Young Cc: 'mod_perl list ' Sent: 9/19/01 5:57 PM Subject: RE: [OT] New Micro$oft vulnerability? This helps alot. I've been looking for a concise map of the various phases and what returns codes take me where. I'll probably post

RE: [OT] New Micro$oft vulnerability?

2001-09-18 Thread Geoffrey Young
I'm seeing, with or without my handler, the PerlSetEnv stuff only happening once per connection rather than once per request. I think this was addressed for 1.26 http://marc.theaimsgroup.com/?t=9946915503w=2r=1 however, as you can see at the end of the thread, I don't think the

RE: Updating $r-connection-aborted before $r-print() ?

2001-09-15 Thread Geoffrey Young
my $fileno = $r-connection-fileno; $s = IO::Select-new($fileno); die aborted if grep { m/$fileno/ } $s-can_read(1); Hmm, does this actually work Geoff? What happens if mod_perl is running as a back-end? In this case $r-connection-aborted doesn't work even if

RE: How to build apache/mod_perl/mod_ssl

2001-09-14 Thread Geoffrey Young
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 2:22 PM To: [EMAIL PROTECTED] Subject: How to build apache/mod_perl/mod_ssl Hi, I have the sources of: apache 1.3.20 openssl-0.9.6b openssl-engine-0.9.6b

RE: Updating $r-connection-aborted before $r-print() ?

2001-09-14 Thread Geoffrey Young
-Original Message- From: Joshua Chamas [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 3:21 PM To: Mod Perl Subject: Updating $r-connection-aborted before $r-print() ? Hey, In my own experience it seems that I can only get $r-connection-aborted updated if I

RE: Apache::LogFile

2001-09-14 Thread Geoffrey Young
-Original Message- From: Bryan T. Schmidt [mailto:[EMAIL PROTECTED]] Sent: Friday, September 14, 2001 3:32 PM To: [EMAIL PROTECTED] Subject: Re: Apache::LogFile This problem went away when I downgraded to Apache 1.3.17, mod_perl 1.25, and mod_ssl 2.80. I would really like

RE: Pre-announce Apache::ConfigParser

2001-09-12 Thread Geoffrey Young
-Original Message- From: Blair Zajac To: [EMAIL PROTECTED] Sent: 9/12/01 5:41 PM Subject: Pre-announce Apache::ConfigParser Hello, This is a preannounce of Apache::ConfigParser. I wrote this to allow programs separate from Apache to completely understand, parse and manipulate Apache

RE: Pre-announce Apache::ConfigParser

2001-09-12 Thread Geoffrey Young
I'll let the other module authors answer your API questions - I was merely starting the dialogue :) Is it possible to remove CPAN modules when a common interface is built? yes, PAUSE has a delete interface, which removes them from the various CPAN mirrors. there is also an archive project

RE: AxKit Last-Modified header

2001-09-11 Thread Geoffrey Young
-Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 11, 2001 5:36 AM To: 'Brian Wheeler'; [EMAIL PROTECTED] Subject: RE: AxKit Last-Modified header -Original Message- From: Brian Wheeler [mailto:[EMAIL PROTECTED]]

[DIGEST] mod_perl digest 2001/09/08

2001-09-10 Thread Geoffrey Young
-- mod_perl digest August 26, 2001 - September 8, 2001 -- Recent happenings in the mod_perl world... Features

RE: Internal request

2001-09-10 Thread Geoffrey Young
-Original Message- From: i. To: mod_perl Sent: 9/10/01 6:34 PM Subject: Internal request *This message was transferred with a trial version of CommuniGate(tm) Pro* Is there a way to tell whether or not a request is local or not? $ENV{REQUEST_URI} only gives the request after the dns.

RE: sharing % across requests

2001-09-06 Thread Geoffrey Young
-Original Message- From: Miroslav Madzarevic [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 10:02 AM To: [EMAIL PROTECTED] Subject: sharing % across requests BlankWhat is the best way to share % across multiple requests ? it's called maintaining state - read

RE: sharing % across requests

2001-09-06 Thread Geoffrey Young
-Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 10:16 AM To: 'Miroslav Madzarevic'; [EMAIL PROTECTED] Subject: RE: sharing % across requests -Original Message- From: Miroslav Madzarevic [mailto:[EMAIL

RE: Shared memory caching revisited (was it's supposed to SHARE it, not make more!)

2001-09-04 Thread Geoffrey Young
What about my IPC::FsSharevars? I've once mentioned it on this list, but I don't have the time to read all list mail, so maybe I've missed some conclusions following the discussion from last time. I remember the post and went to find IPC::FsSharevars a while ago and was un-intrigued when I

RE: internal redirect with byterange (was: open downloaded file)

2001-08-30 Thread Geoffrey Young
accessing a file like this results in the access-log in: [30/Aug/2001:17:13:13 +0200] GET /files/sid00017/AR_1000A-TSS_report-TSS.PDF HTTP/1.1 200 32768 https://ida.festbrueder.ch/site/files.pl?siteid=17; Mozilla/4.0 (compatible; MSIE 5.01; Windows [30/Aug/2001:17:13:14 +0200]

RE: Authen question

2001-08-29 Thread Geoffrey Young
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 28, 2001 2:25 PM To: [EMAIL PROTECTED] Subject: Authen question Hello I want to know if there is a way to show a page or another to some users depending in their logins. I have

RE: How to handle the main parent exit

2001-08-28 Thread Geoffrey Young
-Original Message- From: Olivier Poitrey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 28, 2001 8:08 AM To: [EMAIL PROTECTED] Subject: How to handle the main parent exit Hello, I would like to know if it's possible to handle the Apache's main parent exit event. I

<    1   2   3   4   5   6   7   8   9   >