Re: Trouble with Apache::DB

2002-10-27 Thread Kip Cranford
Yes, I was using the stock RH perl. I did try recompiling 5.8.0 with debugging support, as you suggested, with no luck. I then tried recompiling other versions of perl (like 5.8.0 RC2, RC1, 5.7.3), with and without debugging support, also with no luck. Finally, I just grabbed a 5.6.1 (since

Trouble with Apache::DB

2002-10-24 Thread Kip Cranford
I have a newly installed Red Hat 8.0 system, with the following characteristics: * Perl v5.8.0 * mod_perl 1.27 * Apache 1.3.26 The build of mod_perl/Apache worked fine; the project I had been working on before upgrading RH seems to run ok. However, today I attempted to debug something using

Re: Passing data among handlers

2001-01-30 Thread Kip Cranford
On: Tue, 30 Jan 2001 09:54:42 PST "Paul J. Lucas" wrote: Perhaps I've missed it, but is there a better way than the "notes" mechanism to pass data among handlers? The "notes" mechanism not only requires the notes to be scalars, but, apparantly, said scalars must also

Re: [OT] unsubscribe modperl

2000-11-10 Thread Kip Cranford
On: Fri, 10 Nov 2000 13:46:33 PST Paul wrote: --- Dan Oana [EMAIL PROTECTED] wrote: unsubscribe modperl I've seen several of these for the past day or two, and was going to respond with instructions on how to go about unsubscribingand seem to have deleted mine. How do I go about getting

Re: redirecting large POSTs

2000-10-05 Thread Kip Cranford
On: Wed, 04 Oct 2000 15:24:27 PDT [EMAIL PROTECTED] wrote: I was thinking about saving the posted data to a temporary file and reading it back in after the login succeeds, but this seems messy and error-prone. Has anyone else had this problem? Are there any modules (maybe session mgmt stuff?)

Re: redirecting large POSTs

2000-10-05 Thread Kip Cranford
On: Thu, 05 Oct 2000 09:45:30 EDT Drew Taylor wrote: Dare I ask what that 100MB consists of? That's a lot of uploaded data... :-) Pr0n, mostly :) Seriously, though, most of the information consists of CAD binary data (I work in the automotive industry), so we're talking large parts,

[ OT - Job ]

2000-09-28 Thread Kip Cranford
We are looking for experienced mod_perl programmers for a large web application project. Startup environment, lots of autonomy, good $$. Other desired skills: Perl/XS, C, C++, database experience. The job is on-site, and we're in Dearborn, Michigan. If anyone's interested, please contact me

Re: proxy requests via mod_proxy

2000-06-14 Thread Kip Cranford
On: Wed, 14 Jun 2000 12:30:50 EDT [EMAIL PROTECTED] wrote: Hi, I'm using a "light weight" apache server compiled with mod_proxy to pass dynamic requests off to my "heavy" mod_perl enabled server. However, mod_proxy isn't forwarding the REMOTE_ADDR the request originated from in the headers. I

Re: push_handlers weirdness...

2000-05-31 Thread Kip Cranford
On: Wed, 31 May 2000 17:04:05 EDT Geoffrey Young wrote: hi all... I'm not sure if this is related to some of the get/set handler strangeness that I have been seeing lately (as I try to do some weird stacked handler acrobatics), or if it's the result of some closure thing that I really

Re: handlers

2000-05-04 Thread Kip Cranford
On: Thu, 04 May 2000 18:23:30 -0300 FEITO Nazareno wrote: Maybe this isnĀ“t the correct mailing list to post this question but i really need an answer some kind of guide o something like that... I need to use handlers for my webpages under mod_perl, any tutorial or something? Check out

Re: how to rewrite to a POST

2000-04-27 Thread Kip Cranford
On: Thu, 27 Apr 2000 09:06:24 EDT "Ken Y. Clark" wrote: On Wed, 26 Apr 2000, David Hajoglou wrote: so, is it possible to take a GET request and rewrite the uri into a POST request and if so how? i'm not sure if that's really necessary. you could just put the GET args into $r-pnotes, perhaps

Re: this might be an obvious one ...

1999-11-24 Thread Kip Cranford
Dave, This has to do with the scoping of that variable, and happens a lot with CGI scripts run under Apache::Registry. There is a nice description of it in "the guide": http://perl.apache.org/guide/obvious.html#my_scoped_variable_in_nested_s --kip On: Wed, 24 Nov 1999 12:47:57 PST

Re: Apache::Session and File Upload (Was: Apache::Session hangs script)

1999-10-21 Thread Kip Cranford
Thanks for the reply, Jeffrey. Ok, I can understand how leaking session handles would cause a read or write lock, or whatever. However, I thought that untieing the session hash would release whatever locks the session held -- at the end of the simple script I untie the hash. In fact, the

Apache::Session hangs script

1999-10-19 Thread Kip Cranford
I'm using Apache/1.3.9 (Unix), mod_perl/1.21, Apache-Session-1.03, with MySQL 3.22.25. I'm using the the Apache::Session::DBI module with MySQL to provide some simple session management. I'm running the script as a PerlHandler... I'm storing the session ID as a hidden variable, which I