Re: libapreq-1.1 Release Candidate 1

2002-11-25 Thread Ken Williams
Hi Joe & APReq, I'm glad this is receiving attention, Apache::Request has had some trouble on OS X as I'm sure you're aware. I just tested the RC, using: perl 5.6.1 Apache/1.3.26 (as shipped with the OS, uses dso) OS X 10.1.5 and I get this error in 'make test': dyld: t/httpd multiple def

Re: libapreq-1.1 Release Candidate 1

2002-11-25 Thread Ken Williams
On Tuesday, November 26, 2002, at 12:22 PM, Joe Schaefer wrote: Ken Williams <[EMAIL PROTECTED]> writes: [...] I've attached the full output. Thanks, Ken. I looked over the result, but didn't see any indication that you used the "./configure -> make -> make ins

Re: libapreq-1.1 Release Candidate 1

2002-11-25 Thread Ken Williams
On Tuesday, November 26, 2002, at 05:24 PM, Joe Schaefer wrote: Ken Williams <[EMAIL PROTECTED]> writes: [...] I got through "./configure -> make -> make install" successfully, installing to /usr/local/lib/ and /usr/local/include/. However, there doesn't se

Re: libapreq-1.1 Release Candidate 1

2002-11-26 Thread Ken Williams
Edward, Instead of just "./configure", you'll need to do "./configure --with-apache-includes=/usr/include/httpd" (assuming that's where your apache headers are). That'll get you farther, anyway. Joe, maybe this could be added as a default for Darwin or something? -Ken On Tuesday, November 2

Re: Apache::Gallery

2001-10-11 Thread Ken Williams
Michael, Yeah, you can put it in the Apache namespace if it's mod_perl-dependent. That's what it's there for. =) The name Apache::Gallery seems decent. Michael Legart <[EMAIL PROTECTED]> wrote: > Hi, > > Apache::Gallery is a picture gallery implemented as a mod_perl handler, > using libgd2 f

Re: OT: secure mod_perl enabled apache on MacOSX 10.1

2001-10-11 Thread Ken Williams
Joe, The problem is that Apple has made some strange changes to the way shared libraries are linked. I'm not very conversant in the details, but there are some people on the [EMAIL PROTECTED] list that have discussed it. Unfortunately, Apache::Request and Apache::Cookie don't define any tests

Apache::Session getting DESTROYed in wrong order

2001-12-31 Thread Ken Williams
Hey, I'm having problems with Apache::Session, the symptom is that none of my data is getting written to the database. It's not the nested-data problem, since I'm not using any nested data structures. After some investigation, I've discovered that the Apache::Session::Store::MySQL::DESTROY r

Re: Apache::Session getting DESTROYed in wrong order

2002-01-03 Thread Ken Williams
Hi Aaron, I don't have a test case involving Apache::Session yet (I've been out of town for a couple days), but here's a simple one in Perl that demonstrates the DESTROY order problem: -- #!/usr/bin/perl { package Outer; sub ne

Re: Apache::Session getting DESTROYed in wrong order

2002-01-03 Thread Ken Williams
On Thursday, January 3, 2002, at 11:57 AM, Perrin Harkins wrote: >> I don't have a test case involving Apache::Session yet (I've been out >> of >> town for a couple days), but here's a simple one in Perl that >> demonstrates the DESTROY order problem: > > That's sort of a weird example, since it

Re: Apache::Session getting DESTROYed in wrong order

2002-01-03 Thread Ken Williams
On Thursday, January 3, 2002, at 02:02 PM, Jeffrey W. Baker wrote: > This seems like a really weird problem. The Store module is destroyed > while another module still has a reference to it. Unfortunately for you > and I, the only conclusion I have been able to draw is that Perl's > DESTROY >

Re: Apache::Session getting DESTROYed in wrong order

2002-01-04 Thread Ken Williams
Hey, For the sake of thread completion, here's a script which demonstrates the bug. It turns out to be a Perl bug (5.6.1, at least), not an Apache::Session bug. I'll post to p5p after I post here. Note that $foo and %bar are cleaned up by refcount, but %foo isn't cleaned up until global des

Re: Apache::Session getting DESTROYed in wrong order

2002-01-04 Thread Ken Williams
On Friday, January 4, 2002, at 02:48 AM, Gerald Richter wrote: >># Won't get cleaned up properly >>local %foo; >>tie %foo, 'Dummy', name => '%foo'; > > local only make a copy of the original value and restores it at the end > of > the scope, so %foo will not destroyed, but restored

[ANNOUNCE] Apache::SSI v2.17 uploaded

2002-01-14 Thread Ken Williams
Hi, The uploaded file Apache-SSI-2.17.tar.gz has entered CPAN as file: $CPAN/authors/id/K/KW/KWILLIAMS/Apache-SSI-2.17.tar.gz size: 25819 bytes md5: b229a3a25a82935cad2da1af637714be Changes since 2.16: 2.17 Mon Jan 14 13:58:21 CST 2002 Added the Apache::FakeSSI class, w

Re: Apache::Session getting DESTROYed in wrong order

2002-01-17 Thread Ken Williams
On Friday, January 4, 2002, at 02:22 AM, Ken Williams wrote: > For the sake of thread completion, here's a script which demonstrates > the bug. It turns out to be a Perl bug (5.6.1, at least), not an > Apache::Session bug. I'll post to p5p after I post here. I was su

Re: Apache::Session getting DESTROYed in wrong order

2002-01-17 Thread Ken Williams
On Friday, January 18, 2002, at 12:44 AM, Perrin Harkins wrote: >> In a Mason context, which is where I'm using it, I do this in my >> top-level autohandler (ignore the main:: subroutines, they're just for >> pedagogy): >> >> >> <%init> >> # 'local' so it's available to lower-level components

Re: SUCCESS: libapreq working in Mac OS X

2002-02-22 Thread Ken Williams
On Friday, February 22, 2002, at 09:58 AM, Joe Schaefer wrote: > In the interim I'll try and maintain the "experimental" versions. > Stas has been kind enough to work on adding a test suite to libapreq, > which will very likely be included in the next release. That'll be MUCH appreciated. That

problems on OS X

2002-04-27 Thread Ken Williams
Hi, I used to be able to compile mod_perl pretty easily on Mac OS X, but now for some reason (upgrades of modules? OS upgrades?) I'm having a lot of trouble getting past 'make test'. Here's what happens (no matter whether I compile statically with just EVERYTHING=1, or as a DSO as per http:

Re: problems on OS X

2002-04-27 Thread Ken Williams
On Sunday, April 28, 2002, at 12:41 PM, Ken Williams wrote: > I used to be able to compile mod_perl pretty easily on Mac OS > X, but now for some reason (upgrades of modules? OS upgrades?) > I'm having a lot of trouble getting past 'make test'. Here's > w

Re: problems on OS X

2002-04-27 Thread Ken Williams
On Sunday, April 28, 2002, at 01:47 PM, Stas Bekman wrote: > Ken, CWD.pm, has always suffered from taint problems. This problem has > been fixed in the bleadperl, try this patch: > > --- /tmp/Cwd.pm Sun Apr 28 11:44:38 2002 > +++ /home/stas/perl.org/perl-5.6.1/lib/Cwd.pm Fri Sep 14 17:09:1

Re: problems on OS X

2002-04-28 Thread Ken Williams
On Sunday, April 28, 2002, at 04:48 PM, Stas Bekman wrote: > it does solve the problem on linux. Ken, can you test the > bleadperl? This fix was applied as a solution. If `pwd` doesn't > work for you, that sucks! Meaning that the problem wasn't fixed > in bleadperl :( Can you check the recent

Re: problems on OS X

2002-04-28 Thread Ken Williams
On Sunday, April 28, 2002, at 04:48 PM, Stas Bekman wrote: > Ken Williams wrote: >> On Sunday, April 28, 2002, at 01:47 PM, Stas Bekman wrote: >>> Ken, CWD.pm, has always suffered from taint problems. This problem >>> has been fixed in the bleadperl, try this pat

Re: Can mod_perl help me use ENV variables in httpd.conf?

2002-05-02 Thread Ken Williams
On Wednesday, May 1, 2002, at 05:04 AM, Fran Fabrizio wrote: > > I spoke too soon. > > I need: > > > push @Alias, [ qw(/cgi-bin/chimpkit/ $ENV{SERVER_ROOT}/cgi- > bin/chimpkit/) ]; > > > This does not appear to be possible because there's no way to > pass in SERVER_ROOT to the apache startu

Re: Cheap and unique

2002-05-03 Thread Ken Williams
On Wednesday, May 1, 2002, at 06:46 AM, OCNS Consulting wrote: > Of course "srand" seeds "rand". And yes, it is a good way to generate > random numbers for a one time application RUN. The original poster is not looking for "random", he's looking for "unique". These are in many ways *opposite*

Using a 404 ErrorDocument to serve content

2002-05-05 Thread Ken Williams
Hi, I was thinking of writing yet-another-photo-album-server, and I had the idea that I'd write a handler to serve resized versions of JPEGs (very original, I know ;-). The idea is that I'd put a bunch of JPEGs on the server at locations like foo/123.jpg , and then if a request came for foo/

Re: problems on OS X

2002-05-20 Thread Ken Williams
Great, the CVS version passes all tests for me now when built under 'perl Makefile.PL EVERYTHING=1' using apache 1.3.24. On Tuesday, May 21, 2002, at 07:19 AM, Doug MacEachern wrote: > On Sun, 28 Apr 2002, Ken Williams wrote: > >> >> Insecure dependenc

Re: Help w/ Apache::Filter & Apache::SSI ?

1999-10-05 Thread Ken Williams
speak from experience and let me know what they did to >get this working? Thanks, in advance, for all of your help. > --- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Apache::SSI pain

1999-10-12 Thread Ken Williams
> >This handles my needs. It is a disadvantage to be stuck with putting >anything that isn't an "include virtual" into a file which is then called >via an "include virtual". But at least it works. > >-- > > >"The only thing more frightening than a programmer with a screwdriver >or a hardware enginner with a program is a user with wire cutters and >the root password."- Elizabeth Zwicky > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Multiple SSI not getting parsed

1999-10-12 Thread Ken Williams
ine 117. >Apache::OutputChain::PRINT Apache::SSIChain=ARRAY(0x7d49fc) >Apache::OutputChain::PRINT Apache::OutputChain=ARRAY(0x1b2cb0) > > >So, my question is, is it possible to process multiple includes in the >output of a Registry script using chaining? What else should

Re: Apache::DBI & MySQL

1999-10-13 Thread Ken Williams
nnection in >mysql than apache processes (only Apache/CGI should be accessing MySQL) and >most processes seem to have very high "Time"s under the "sleep" stat when I >do a 'processlist' in mysql. Please advise. > -- Viren > -

Re: Apache::Filter: Can't locate object method "TIEHANDLE"

1999-10-14 Thread Ken Williams
ndler Apache::Testfilter2 Apache::Testfilter2 > Options +ExecCGI > > >It would be great, if someone has some hints what i can do or what >goes wrong. Everything else i tried (Apache::Registry and a >standalone handler) is working fine. > >Thank you. > >With kind regards, > > Roland Alder > > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Apache::Filter: Can't locate object method "TIEHANDLE"

1999-10-15 Thread Ken Williams
ay on another plattform (Solaris instead of Linux) and look what's >happening there. > >Thank you again, > >Roli > > >-- >Roland Alder, Doerfli 3 / Schmidweg, CH-8634 Hombrechtikon >e-mail: [EMAIL PROTECTED], WWW: http://galaxy.ch/roli/ > > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Apache::Filter: Can't locate object method "TIEHANDLE"

1999-10-16 Thread Ken Williams
ot; >and tested it. It works. Is this a bad idea with more problems to rise, >or a usable workaround? > >Thanks. > > >-- >Roland Alder, Doerfli 3 / Schmidweg, CH-8634 Hombrechtikon >e-mail: [EMAIL PROTECTED], WWW: http://galaxy.ch/roli/ > > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

ANNOUNCE: Apache::Filter v.1.005 released

1999-10-17 Thread Ken Williams
Sun Oct 17 11:57:20 EDT 1999 - Fixed a problem that prevented proper functioning when Perl is compiled with sfio instead of stdio. Should work properly now. ------ Ken Williams Last Bastion of

Re: Apache::Filter - get_handlers

1999-10-23 Thread Ken Williams
$info->{'count'}) { > >mod_perl 1.21, Apache::Filter 1.005. > >Thanks, >---m > >-- > [EMAIL PROTECTED]Miguel "Migs" A.L. Paraz > http://www.iphil.netIPhil Communications Network, Inc. > +63-2-75

Patch for Apache::AuthCookie

1999-10-23 Thread Ken Williams
27;re wacky (i.e. change more than just the authen_cred() and authen_ses_key() methods). ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum patch

Re: Patch for Apache::AuthCookie

1999-10-24 Thread Ken Williams
Oops - the patch I attached was missing a line. The second line in the recognize_user() routine should be: my $debug = $r->dir_config("AuthCookieDebug") || 0; or else the thing doesn't even compile. Last-minute changes, you know... =) [EMAIL PROTECTED] (Ken Williams) w

Re: Apache::Filter - get_handlers

1999-10-24 Thread Ken Williams
> >Yup, using David H's apache-modperl RPM fixed it. I was previously using >Red Hat's RPM - I guess they built it wrong? > >Next question - a HEAD request on this Filter'ed page is treated as a GET. >Is that right? > >Thanks, >---m > > >On Sat, Oct

Re: Patch for Apache::AuthCookie

1999-10-27 Thread Ken Williams
che::CookieAuth?) or find a new maintainer for AuthCookie. [EMAIL PROTECTED] (Ken Williams) wrote: >Hi mod_perl-ers, > >I've been working with the Apache::AuthCookie module, and have made a >couple of modifications that make it more flexible. As an added >benefit, the code is no

Re: suggestion about PerlRun

1999-10-27 Thread Ken Williams
s, > >package Apache::PerlRunFake; >use Apache::PerlRun; >@ISA = qw(Apache::PerlRun); >sub readscript { > ... >} >sub handler { >my $r = shift; >my $pr = Apache::PerlRunFake->new($r); >$pr->handler_body;

Re: suggestion about PerlRun

1999-10-28 Thread Ken Williams
[EMAIL PROTECTED] (Yasushi Nakajima) wrote: >On Wed, 27 Oct 1999 23:24:58 -0500 >Ken Williams <[EMAIL PROTECTED]> wrote: > >Ken> I think a better solution would be to make PerlRun use real object-oriented >Ken> thinking (method handlers), something like this: &

Re: OT: Is there a general question apache mailing list?

1999-10-28 Thread Ken Williams
[EMAIL PROTECTED] (Greg Stark) wrote: >2) you need a space before the --> otherwise it's misparsed > (you must _not_ have a space in or after the

Re: Patch for Apache::AuthCookie

1999-10-28 Thread Ken Williams
aintainer? >> >> If we can't find him, I suppose we should either make a new module >> for this (Apache::CookieAuth?) or find a new maintainer for >> AuthCookie. >> >> >> [EMAIL PROTECTED] (Ken Williams) wrote: >> >Hi mod_perl-ers, >

Re: Apache::SSI pain

1999-10-31 Thread Ken Williams
erverName lat.tarunz.org >Options +Includes -Indexes > >SetHandler perl-script >PerlHandler Apache::SSI > > >RewriteEngine On >Alias /perl/ /home/www/tarunz/perl/ >RewriteRule (^/.*html?$) /perl/code.pl/vol$1 [L] > >SetHandler perl-script >PerlHandler Apache::Ou

Re: XSSI parsing on CGI output

1999-01-02 Thread Ken Williams
net | God is real until - >- mailto:[EMAIL PROTECTED] | declared integer - > > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: MD5 risks?

1999-11-08 Thread Ken Williams
n nights such as this, evil deeds are done. And good deeds, of / >| course. But mostly evil, on the whole. / > \ -- (Terry Pratchett, Wyrd Sisters) / > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: CGI.pm Bug?

1999-11-11 Thread Ken Williams
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ > Jesse Erlbaum ... CTO > [EMAIL PROTECTED] . Vanguard Media > v: 212.242.5317 x115 .. New York City >+-+-+-+-+-+- http://www.vm.com/ +-+-+-+-+-+-+ > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

PerlSetVar is case-insensitive?

1999-11-11 Thread Ken Williams
7;s probably documented somewhere else, but I couldn't find it. --- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: RegistryNG docs?

1999-11-12 Thread Ken Williams
Sports Network, Inc. > [EMAIL PROTECTED] + http://www.SportsRocket.com/ > > ---------- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Bug in libapreq makes form elements stick to an apache child

1999-01-17 Thread Ken Williams
sions of Perl will give you different results with that test. Finally, what if &func returns (undef, 1) or even (undef)? If you use your "defined $list[0]" test, you'll get a false result here, when &func actually did return stuff. Of course,

PerlSetVar precedence questions

1999-11-20 Thread Ken Williams
s. What's the standard here? --- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: PerlSetVar precedence questions

1999-11-20 Thread Ken Williams
in a certain extension. [EMAIL PROTECTED] (Ken Williams) wrote: >Hi, > >I'm wondering about a precedence issue with PerlSetVar. Suppose I have the >following setup: > > in docroot/.htaccess: > PerlSetVar Lemon Tasty > in docroot/dir/.htaccess: > PerlSetVar Le

RE: PerlSetVar precedence questions

1999-11-22 Thread Ken Williams
[EMAIL PROTECTED] (Eric Cholet) wrote: >Ken Williams wrote: >> I've done some more digging, and found a rather bizarre explanation. >> As it turns out, if the parent .htaccess has its directive in a >> section and the subdirectory doesn't, the parent will >

Re: Flaky software

1999-11-23 Thread Ken Williams
ered. > >For me, your slapdash approach has polluted the mod_perl resource to >the extent that now I don't trust any of it. The entire exercise is >written off to experience and I am looking for alternatives. > >Earlier in November, Stas Bekman put out a message saying

Re: How to run a secure mod_perl ?

1999-11-24 Thread Ken Williams
ugh to your server. It's what I do with an ISP. I must say, though, that using an ISP and mod_perl has caused me a lot of headaches. It's better to use your own box if you can. ---------- Ken Williams

not allowed here? (Perl sections)

1999-11-24 Thread Ken Williams
ded in the server configuration"). Any clues? --- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: not allowed here? (Perl sections)

1999-11-25 Thread Ken Williams
Problem solved. Jay J pointed out to me in private email that this had probably been fixed in the latest development snapshot, and indeed it has. See http://www.davin.ottawa.on.ca/archive/modperl/1999-07/msg01080.phtml [EMAIL PROTECTED] (Ken Williams) wrote: >Hi, > >I'm get

Release for 1.22?

1999-11-25 Thread Ken Williams
them to upgrade without a formal release. Any ideas about when that might happen? ---------- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: reads everything as one line

1999-11-26 Thread Ken Williams
cess the POSTed data. >> >> ELB >> >> -- >> Eric L. Brine | Chicken: The egg's way of making more eggs. >> [EMAIL PROTECTED] | Do you always hit the nail on the thumb? >> ICQ# 4629314 | An optimist thinks thorn bushes have roses. >> > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Announce: Apache::SSI v2.09

1999-11-28 Thread Ken Williams
ilii >P.S. I am now writing my 1st mod_perl handler from the scratch -- thanks >Doug/Stas/Ken/everyone for seducing me into all it by your positive work >example. The software and the docs are just great... > ------

Re: User registration/login module...

1999-11-30 Thread Ken Williams
, or find out about >other modules that have been used to successfully implement the above. > >Thanks!!! > >Arnel > >__ >Get Your Private, Free Email at http://www.hotmail.com > ---

Re: PerlFreshRestart and %INC

1999-12-03 Thread Ken Williams
VAL(entry) = &sv_undef; MP_TRACE_g(fprintf(stderr, "reloading %s\n", key);) perl_require_pv(key); } dowarn = old_warn; } ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: mod_perl Programmers demand is going up...

1999-12-04 Thread Ken Williams
s for Racers and Race Tracks!! > >On Sat, 4 Dec 1999, Rod Butcher wrote: > >> Um... how about a mythical beast with the head of an eagle and the body >> of a camel ? >> Rod ------ K

Re: PerlFreshRestart and %INC

1999-12-05 Thread Ken Williams
make this interface backward-compatible, so I suppose it deserves a new class name. Apache::PersistentDBI? Apache::CacheDBI? --- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Associative Arrays problem

1999-12-08 Thread Ken Williams
27;t be a problem. >Of course if I try to access $rech->{'key'} I'll get empty value later :) > >So, was it an error in real testing code? Because the code that I saw didn't >contain that error. ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Configuring Apache with Problems

1999-12-10 Thread Ken Williams
) Is there any way to get the same warning/error messages from mistakes >in a block that you do from "normal" configuration? I'm thinking >particularily of the warnings you get from setting *SpareServers to >innapropriate values. > >I'm working on a server that says "m

Re: ANNOUNCE: Apache::SafeHang

1999-12-12 Thread Ken Williams
oom to grow. SafeHang kind of sounds like it might have something to do with the Safe.pm module, too. ---------- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: ANNOUNCE: Apache::SafeHang

1999-12-12 Thread Ken Williams
might as well generate a periodic report of what it finds. How many processes, how long each has been running, how much memory, etc. Personally I find my Apache processes to be pretty well-behaved, so I'm not speaking of actual needs I have, but rather just neat features you might add. ---

Re: possible patch for Apache::AuthCookie

1999-12-16 Thread Ken Williams
e . >--- >> $r->err_header_out("Set-Cookie" => $auth_type . "_" . $auth_name . >145c145 >< $r->log_error("set_cookie " . $r->err_headers_out->add("Set-Cookie")) >--- >> $r->log_error("set_cookie " . $r->err_header_out("Set-Cookie")) >-- > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Modules Lost in EMBPERL

2000-01-03 Thread Ken Williams
quot; without a package or object reference at >somegirls line 12. [...] >What is the best way to make sure use works in a page? > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: $r->notes()...

2000-01-14 Thread Ken Williams
able. That's why it has to be flattened to a string, so it can't store arbitrary data structures (without some work). I've never passed values to a non-Perl module myself, but it seems like one of the main purposes for $r->notes. -------

Apache::AuthCookie takeover?

2000-01-22 Thread Ken Williams
logout pages when appropriate. Apache::AuthCookieTicket? Apache::AuthTicket? (Does this exist?) --- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Apache::AuthCookie takeover?

2000-01-25 Thread Ken Williams
[EMAIL PROTECTED] (Ask Bjoern Hansen) wrote: >On Sat, 22 Jan 2000, Ken Williams wrote: > >> * make a new module with a new name, since some of my changes have changed >> the interface, or >> * usurp the Apache::AuthCookie module and provide a clear &

Apache::AuthCookie with multiple 'require' directives?

2000-01-27 Thread Ken Williams
return OK if $ret_val == OK; } $restricted++; } return OK unless $restricted; return FORBIDDEN; Is anyone actually using this with multiple "require' directives? Or would anyone like to? ---

Re: mod_perl flashback

2000-01-19 Thread Ken Williams
a CGI script and the output would magically be parsed for SSI. Hmmm... I'm not promising anything right now though - the main obstacle is that Apache::SSI is meant to run under mod_perl, and getting full functionality under mod_cgi is no trivial task. ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: ANNOUNCE: Updated Hello World Web Application Benchmarks

2000-01-28 Thread Ken Williams
ral people on the modperl list. Not that I'm volunteering to take on this project, I've got a lot of work backed up through my pipes right now. =) ------- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

ANNOUNCE: Apache::Filter 1.06

2000-01-29 Thread Ken Williams
ilippe M. Chiasson)] ---------- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

ANNOUNCE: Apache::AuthCookie v2.0

2000-02-02 Thread Ken Williams
2.000.tar.gz * size: 12760 bytes *md5: e943bebd35b8151d0d10aa039b67fb4a * * Changed in version 2.0: * * - Now owned by Ken Williams ([EMAIL PROTECTED]) * * - Created authenticate() and authorize() methods to replace authen() * and authz(). authen() and authz() are now deprecate

Re: lookup_uri and access checks

2000-02-03 Thread Ken Williams
the right place, or contains the right secret key in the path_info, or whatever. ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Commercial app demo

2000-02-09 Thread Ken Williams
untime using his >key (retrieved from STDIN at server startup time). --- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: [SITE] possible structure suggestion

2000-02-09 Thread Ken Williams
licking on any of the navigation links (e.g. "solutions") launches me into an infinite loop, using Navigator 4.71 on a Mac. --- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: $r->print delay?

2000-02-10 Thread Ken Williams
6.1) >Dual PIII 450Mhz with local netscape 4.7 client... > ------- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: $r->print delay?

2000-02-10 Thread Ken Williams
ast trick might work. [EMAIL PROTECTED] (Ed Loehr) wrote: >Ken Williams wrote: >> >> Are you sure it's waiting? You might try debug timestamps before & >> after the $r->print(). You might also be interested in the send_fd() >> method if the data are in a file

Re: Apache::ASP and Apache::SSI problems

2000-02-10 Thread Ken Williams
r HTTP in some messed up directory >> where it oviously doesn't exist, you have to run make install manually or >> force the install through cpan which I have NO IDEA how to do). > >>From the CPAN shell: >> force install Apache::SSI > >All the Ken Williams mo

re-tieing stdout to caputure subrequest output

2000-02-14 Thread Ken Williams
reatful to that person. > >Thanks. > >--- >Jason Bodnar + [EMAIL PROTECTED] + Tivoli Systems > >I swear I'd forget my own head if it wasn't up my ass. -- Jason Bodnar > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: UN-Authenticating users?

2000-02-14 Thread Ken Williams
g like $c->user = ""; which I'm >guessing would barf anyway. You can call Apache->request() to get the $r object. But you're right, that would barf. ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

ANNOUNCE: Apache::AuthCookie 2.001

2000-02-10 Thread Ken Williams
t additions. Let me know how they pan out. ---------- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: Apache::StatINC.pm

2000-03-27 Thread Ken Williams
[EMAIL PROTECTED] (René Seindal) wrote: >I just got bitten by the problem of Apache::StatINC not reloading >modules found through an element of @INC, which is no longer present >when StatINC runs. [...] >A small change to StatINC solves the problem. Since StatINC could stat >the file, the file is

Re: Can't get past login screen with AuthCookie module

2000-03-27 Thread Ken Williams
44 2000] [error] uri /protected/get_me.html > >I would be glad to provide any other info if needed. > >Thanks for any help. > >dave > >David Namiotka >Systems Administrator >Deposit Software, Inc. >ph: 360-297-6000 x214 >fax: 360-297-7125 > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: performance mongers: since when is using CGI.pm or Apache::Registry dishonorable?

2000-03-29 Thread Ken Williams
makes a lot of sense for people who need to keep their scripts portable and CGI-compatible. Same with CGI.pm. No reason to couch things in your black/white good/bad terms, as there is a time to use all of these very popular tools and a time to choose other tools. ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: performance mongers: since when is using CGI.pm or Apache::Registry dishonorable?

2000-03-29 Thread Ken Williams
can organize things well and it just "feels right" to me. But I wouldn't try to change anyone's mind if they liked a different tool more. --- --- Ken Williams Last Bastion of Euclidity

Re: [RFC] holding a mod_perl conference

2000-03-30 Thread Ken Williams
le getting together to present things and talk Perl. What about something like that? ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: [ANNOUNCE] Apache::DebugInfo_0.02

2000-04-04 Thread Ken Williams
store any scalar, which can be a reference to complex structures or whatever. No Data::Dumper needed. But I haven't read the source to see whether this is actually true. ---------- Ken Williams Last

Re: [RFC] holding a mod_perl conference

2000-04-04 Thread Ken Williams
enue. Otherwise I'd jump at the chance. Perhaps I could help someone out if they want to be the main person? ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: THREE STRIKES...

2000-04-07 Thread Ken Williams
kind of counter or something, which means you're using a database, which means you might as well just use the simple database scheme as originally suggested. It's also difficult to implement a lockout time with cookies, because the user could just quit the browser & relaunch to clear

Re: THREE STRIKES...

2000-04-07 Thread Ken Williams
[EMAIL PROTECTED] (Ken Williams) wrote: > >I should point out that if someone feels the need to use a 3-strikes system, >then cookies are inherently a bad decision unless you get really fancy. And I should amend my statement to say that cookies can be a good idea in this case (an

Re: REDIRECT missing Cookie

2000-04-08 Thread Ken Williams
ion' => $location); >return REDIRECT; Try changing to $r->err_headers_out. Details in the eagle book. ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: [newbie] diffs and cvs

2000-04-09 Thread Ken Williams
way to fix bugs and submit patches. --- --- Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

Re: PATCH for Apache::AuthCookie to overwrite the login_form display

2000-04-09 Thread Ken Williams
atch to >Apache::AuthCookie that splits up the call to custom_response in an separate >method, so I am able to overwrite it. Thanks Gerald, I'll roll it in. --- --- Ken Williams Last Bastion of Eu

Re: Deprecated warnings in Apache::DBI

2000-04-10 Thread Ken Williams
1/home/pweiss/perl-56/lib/site_perl/5.6.0/Apache/DBI.pm line 135. >(Maybe you should just omit the defined()?) > > >Shouldn't 'no warnings' suppress this? > >-P > ------ Ken Williams Last Bastion of Euclidity [EMAIL PROTECTED]The Math Forum

RE: Deprecated warnings in Apache::DBI

2000-04-10 Thread Ken Williams
ill appears defined. ... This counterintuitive behaviour of defined() on aggregates may be changed, fixed, or broken in a future release of Perl. ------ Ken Willi

  1   2   3   4   >