DBD-Oracle and mod_perl

2000-07-26 Thread Geoffrey Young
hi everyone... I was just wondering if anyone has been able to get the newer releases of DBD-Oracle to work under mod_perl? that is, using DBD-Oracle 1.04, 1.05, and 1.06, under perl 5.005 (RH6.0 standard) and DBI-1.14 I get consistently non-working results, but only when running under mod_perl.

RE: Severe problem with $r->log_error

2000-07-11 Thread Geoffrey Young
did you compile mod_perl with EVERYTHING=1 or PERL_LOG_API=1 --Geoff > -Original Message- > From: Axel Wagner [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 11, 2000 11:30 AM > To: [EMAIL PROTECTED] > Subject: Severe problem with $r->log_error > > > Hi, > > I have a serious problem

RE: Interfacing from Apache to Access

2000-07-10 Thread Geoffrey Young
look into DBI and DBD::ODBC on CPAN (http://www.perl.com/CPAN-local/modules/by-module/) from the DBI mailing list, I gather lots of folks use DBD::ODBC for perl-MSAccess connectivity... HTH --Geoff > -Original Message- > From: Lorenzo Gordon [mailto:[EMAIL PROTECTED]] > Sent: Monday,

RE: PerlSetupEnv is evil

2000-07-10 Thread Geoffrey Young
> -Original Message- > From: Roger Espel Llima [mailto:[EMAIL PROTECTED]] > Sent: Friday, July 07, 2000 5:19 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: PerlSetupEnv is evil > > [snip] > > It also turns out that specifying "PerlSetupEnv Off" outside of any > apparen

RE: Apache::ASP and post-POST redirect

2000-07-07 Thread Geoffrey Young
> -Original Message- > From: Joshua Chamas [mailto:[EMAIL PROTECTED]] > Sent: Friday, July 07, 2000 12:46 PM > To: Dmitry Beransky > Cc: [EMAIL PROTECTED]; Ken Williams > Subject: Re: Apache::ASP and post-POST redirect > > > > I bet its an ASP->Apache::Filter issue, because in general

RE: PerlAddVar bug

2000-07-06 Thread Geoffrey Young
> -Original Message- > From: Eric Cholet [mailto:[EMAIL PROTECTED]] > Sent: Thursday, July 06, 2000 1:47 PM > To: Matt Sergeant; Geoffrey Young > Cc: [EMAIL PROTECTED] > Subject: Re: PerlAddVar bug > > > > On Thu, 6 Jul 2000, Geoffrey Young wrote

RE: What is *.xs file?

2000-07-06 Thread Geoffrey Young
> -Original Message- > From: James G Smith [mailto:[EMAIL PROTECTED]] > Sent: Thursday, July 06, 2000 11:20 AM > To: Sam Xie > Cc: [EMAIL PROTECTED] > Subject: Re: What is *.xs file? > > > Sam Xie <[EMAIL PROTECTED]> wrote: > >> Umm this list is for perl as a module in apache > >> not

PerlAddVar bug

2000-07-06 Thread Geoffrey Young
Sorry to bring up PerlAddVar again, but this time I have a legitimate bug. It stems from what I reported last time about items in Apache::Table not being visible outside a directives: that is, given: Alias /test /usr/local/apache/test # this outside value of foo doesn't get seen! # Perl

RE: error DBI with quote

2000-07-05 Thread Geoffrey Young
this more properly belongs on the DBI list, but see page 122 of the cheetah book:   "Bind values are passed to the database seperately from the SQL statement, so there's no need to 'wrap up' the value in SQL quoting rules."   thus, no need to call quote()...   HTH   --Geoff -Original M

RE: can't properly append to file from mod_perl script

2000-07-05 Thread Geoffrey Young
Are you setting PerlWarn On and checking for errors? I get these when compiling your script under RegistryLoader: Variable "$results_file" will not stay shared at /usr/local/apache/perl-bin/test.cgi line 29. Variable "$entry" will not stay shared at /usr/local/apache/perl-bin/test.cgi line 31. V

RE: Session Cookies:cant retrieve value

2000-06-30 Thread Geoffrey Young
> -Original Message- > From: darren chamberlain [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 30, 2000 9:29 AM > To: Geoffrey Young > Cc: [EMAIL PROTECTED] > Subject: Re: Session Cookies:cant retrieve value > > > Geoffrey Young ([EMAIL PROTECTED]) sa

RE: Session Cookies:cant retrieve value

2000-06-30 Thread Geoffrey Young
> -Original Message- > From: darren chamberlain [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 30, 2000 8:48 AM > To: Steven Wren > Cc: [EMAIL PROTECTED] > Subject: Re: Session Cookies:cant retrieve value > > [snip] > > Try setting the cookie in an early phase of the request > (Perl

RE: Browser Sniffing

2000-06-30 Thread Geoffrey Young
> -Original Message- > From: Edwin Pratomo [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 29, 2000 10:06 PM > To: [EMAIL PROTECTED] > Subject: Re: Browser Sniffing > > > Ask Bjoern Hansen wrote: > > > > On Thu, 29 Jun 2000, Drew Taylor wrote: > > > > > I'm hoping it's been done alre

RE: Upgrade

2000-06-29 Thread Geoffrey Young
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 28, 2000 4:45 PM > To: Geoffrey Young > Cc: [EMAIL PROTECTED] > Subject: RE: Upgrade > > > Looks like I'm going to have to recompile the works. I've d

RE: Apache::Upload ?

2000-06-29 Thread Geoffrey Young
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 28, 2000 5:46 PM > To: Geoffrey Young > Cc: [EMAIL PROTECTED] > Subject: Re: Apache::Upload ? > > > Geoffrey Young wrote: > > > > the documentatio

RE: can't properly append to file from mod_perl script

2000-06-29 Thread Geoffrey Young
you might want to 'use strict' and see what pops up :) additionally, you might want to read up on mod_perl_traps.pod and http://perl.apache.org/guide/porting.html specifically http://perl.apache.org/guide/porting.html#Exposing_Apache_Registry_secret HTH --Geoff > -Original Message-

RE: Apache::Upload ?

2000-06-28 Thread Geoffrey Young
Geoff > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 28, 2000 3:31 PM > To: Geoffrey Young > Cc: 'Casey Bristow'; [EMAIL PROTECTED] > Subject: Re: Apache::Upload ? > > > i to need an upload solution > &g

RE: Upgrade

2000-06-28 Thread Geoffrey Young
as long as you have mod_so compiled into apache, you should be able to add mod_perl as a DSO. you can check with httpd -l the advice you will get the most from this list is to recompile apache with a static mod_perl and forget DSO, but DSO stability is reported to have improved of late so it may

[new module] Apache::Regex

2000-06-28 Thread Geoffrey Young
Hi all... I posted to the list a little while ago a simple regular expression PerlHandler implementation. I've cleaned it up since then and thought I might post it to CPAN if there is any interest. I was thinking of Apache::Regex as the release name. I know it's a basic module, and peo

RE: Apache::Upload ?

2000-06-28 Thread Geoffrey Young
> -Original Message- > From: Casey Bristow [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 27, 2000 6:07 PM > To: [EMAIL PROTECTED] > Subject: Re: Apache::Upload ? > > > > I can answer this one myself.. I was doing something > stupid.. I missed > the "perl -MCPAN -e 'install Bund

RE: mod_perl install

2000-06-27 Thread Geoffrey Young
you may want to see http://perl.apache.org/guide/install.html specifically http://perl.apache.org/guide/install.html#APACHE_PREFIX HTH --Geoff > -Original Message- > From: Michael L. Stokes [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 27, 2000 11:46 AM > To: [EMAIL PROTECTED] > Su

RE: set_handlers() bug?

2000-06-26 Thread Geoffrey Young
ED]] > Sent: Monday, June 26, 2000 3:40 PM > To: 'Geoffrey Young' > Cc: [EMAIL PROTECTED] > Subject: RE: set_handlers() bug? > > > From: Geoffrey Young [mailto:[EMAIL PROTECTED]] > > > try $r->set_handlers(PerlAuthzHandler => > > ['Tivoli

RE: set_handlers() bug?

2000-06-26 Thread Geoffrey Young
> -Original Message- > From: Christian Gilmore [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 26, 2000 2:52 PM > To: 'Geoffrey Young' > Cc: [EMAIL PROTECTED] > Subject: RE: set_handlers() bug? > > > > > $r->set_handlers(PerlAuthzHandle

RE: set_handlers() bug?

2000-06-26 Thread Geoffrey Young
> -Original Message- > From: Christian Gilmore [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 26, 2000 11:40 AM > To: 'Eric Cholet' > Cc: 'Modperl Mailing List (E-mail)' > Subject: RE: set_handlers() bug? > > > So, I've done a bit more debugging. It looks like set_handlers is all > bef

RE: is PerlAddVar working?

2000-06-26 Thread Geoffrey Young
> -Original Message- > From: Geoffrey Young [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 23, 2000 1:24 PM > To: '[EMAIL PROTECTED]' > Subject: is PerlAddVar working? > > > hi all... > > I've been trying all morning to access P

RE: Simple program _setting_ REMOTE_ADDR - SOLUTION

2000-06-23 Thread Geoffrey Young
> -Original Message- > From: Dan Rench [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 23, 2000 12:33 PM > To: Steve van der Burg > Cc: [EMAIL PROTECTED] > Subject: Re: Simple program _setting_ REMOTE_ADDR - SOLUTION > > > On Fri, 23 Jun 2000, Steve van der Burg wrote: > > > Taking yo

is PerlAddVar working?

2000-06-23 Thread Geoffrey Young
hi all... I've been trying all morning to access PerlAddVar variables as expected (see http://marc.theaimsgroup.com/?l=apache-modperl&m=95718409824646&w=2 and forward) I'm not sure if anyone tested Doug's patch (http://marc.theaimsgroup.com/?l=apache-modperl&m=95742001627308&w=2)

RE: Totally annoyed at IE ( Cookie oddity )

2000-06-23 Thread Geoffrey Young
I just tried the following registry script with NS4.7 and IE5 (both win) and it worked just fine... #!/usr/bin/perl use strict; my $r = shift; $r->err_headers_out->add('Set-cookie' => 'cookie1=value1; domain=.laserlink.net'); $r->err_headers_out->add('Set-cookie' => 'cookie2=value2; domain=.lase

RE: stripping CRLF on the way out?

2000-06-22 Thread Geoffrey Young
out... --Geoff > -Original Message- > From: Paul Lindner [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 22, 2000 10:53 AM > To: Geoffrey Young > Cc: 'Dave DeMaagd'; [EMAIL PROTECTED] > Subject: Re: stripping CRLF on the way out? > > > Try running HT

RE: stripping CRLF on the way out?

2000-06-22 Thread Geoffrey Young
I wrote a quick handler that implements a regex as a PerlHandler maybe this will help to strip out comments: (oh, and if anyone would like to see this as an official module, I can clean it up and release it - I didn't really think there would be much interest in it when I wrote it...) package

RE: ANNOUNCE: new draft mod_perl quick reference card

2000-06-22 Thread Geoffrey Young
> -Original Message- > From: Vladislav Safronov [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 22, 2000 8:24 AM > To: 'Geoffrey Young'; 'Andrew Ford'; '[EMAIL PROTECTED]' > Subject: RE: ANNOUNCE: new draft mod_perl quick reference card &g

RE: How to log post and put contents?

2000-06-22 Thread Geoffrey Young
> -Original Message- > From: Tom Mornini [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 21, 2000 3:44 PM > To: [EMAIL PROTECTED] > Subject: How to log post and put contents? > > > I'm attempting to write a real-world traffic recorder for > volume testing > and QAing our site > >

RE: PerlAuthenHandler and browsers

2000-06-21 Thread Geoffrey Young
> -Original Message- > From: J. J. Horner [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 21, 2000 3:25 PM > To: Blue > Cc: [EMAIL PROTECTED] > Subject: Re: PerlAuthenHandler and browsers > > > On Wed, 21 Jun 2000, Blue wrote: > > > On Wed, 21 Jun 2000, J. J. Horner wrote: > > > >

RE: Apache::DBI

2000-06-21 Thread Geoffrey Young
> -Original Message- > From: Eric Jain [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 21, 2000 1:30 PM > To: Mod_Perl > Subject: Apache::DBI > > > Is it be possible to modify Apache::DBI in sich a way that only > database connections specified in a PerlRequired startup.pl with > Apac

RE: Restarting a modperl server

2000-06-21 Thread Geoffrey Young
really, there is no trustworthy way to do what you want except by stopping and starting the server. During development, you can use either the PerlFreshRestart directive or Apache::StatINC. I typically avoid PerlFreshRestart due to the demons, but Apache::StatINC is rather handy, although it occ

[OT] linkcheck program from perlmonth

2000-06-20 Thread Geoffrey Young
If anyone is interested, the linkcheck program from the last perlmonth.com issue has been upgraded and made it's way to CPAN... http://www.cpan.org/authors/id/S/SW/SWMCD/linkcheck-1.00 --Geoff

[advocacy] IIS v Apache article

2000-06-19 Thread Geoffrey Young
just thought everyone might be interested... http://www.entmag.com/displayarticle.asp?ID=6150095626AM BTW - Ged, you're quoted :)

RE: ANNOUNCE: new draft mod_perl quick reference card

2000-06-19 Thread Geoffrey Young
just a few things: I think I remember discussing that using %hash = $r->headers_out didn't work with multiple Set-Cookie fields in the header. IIRC, the discussion yielded @array = $r->headers_out as solving the problem. Although the eagle book says to call headers_out in a list or scalar

RE: err_headers_out Q

2000-06-19 Thread Geoffrey Young
> -Original Message- > From: Doug MacEachern [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 09, 2000 1:21 PM > To: Geoffrey Young > Cc: '[EMAIL PROTECTED]' > Subject: Re: err_headers_out Q > > > On Fri, 2 Jun 2000, Geoffrey Young wrote: > &

RE: Apache::ASP

2000-06-07 Thread Geoffrey Young
well, I don't use Apache::ASP, but a quick glance of the README yielded the apropriate instructions you are looking for... :) --Geoff > -Original Message- > From: Clement Law [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 07, 2000 1:54 PM > To: [EMAIL PROTECTED] > Subject: Apache::A

[Advocacy] apachetoday.com

2000-06-07 Thread Geoffrey Young
apachetoday.com was launched sometime last week (I think), and today features Stas and mod_perl on the front page :) --Geoff

RE: NEWBIE: appending to page content

2000-06-06 Thread Geoffrey Young
> -Original Message- > From: Jim Sproull [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 06, 2000 2:35 PM > To: Geoffrey Young > Subject: RE: NEWBIE: appending to page content > > > > > > -Original Message- > > From: Geoffrey Yo

RE: NEWBIE: appending to page content

2000-06-06 Thread Geoffrey Young
> -Original Message- > From: Jim Sproull [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 06, 2000 2:09 PM > To: Geoffrey Young > Cc: [EMAIL PROTECTED] > Subject: RE: NEWBIE: appending to page content > [snip] > > > > Hi again Geoff. Thanks

RE: NEWBIE: appending to page content

2000-06-06 Thread Geoffrey Young
> -Original Message- > From: Jim Sproull [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 06, 2000 1:53 PM > To: [EMAIL PROTECTED] > Subject: RE: NEWBIE: appending to page content > > > > Thanks to Geoff Young for pointing me in the right direction towards > Apache::SimpleReplace. I

RE: [benchmark] DBI/preload (was Re: [RFC] improving memory mapping thru code exercising)

2000-06-06 Thread Geoffrey Young
> -Original Message- > From: Ken Miller [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 06, 2000 12:13 PM > To: [EMAIL PROTECTED] > Subject: RE: [benchmark] DBI/preload (was Re: [RFC] improving memory > mapping thru code exercising) > > > At 11:10 AM 6

RE: NEWBIE: appending to page content

2000-06-06 Thread Geoffrey Young
> -Original Message- > From: Jim Sproull [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 06, 2000 11:00 AM > To: [EMAIL PROTECTED] > Subject: NEWBIE: appending to page content > > > I'm relatively new to mod_perl and have been fighting with a > relatively simple task: appending data

RE: [benchmark] DBI/preload (was Re: [RFC] improving memory mapping thru code exercising)

2000-06-06 Thread Geoffrey Young
> -Original Message- > From: Jason Terry [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 06, 2000 10:52 AM > To: [EMAIL PROTECTED] > Subject: Re: [benchmark] DBI/preload (was Re: [RFC] improving memory > mapping thru code exercising) > > > I just wanted to thank you guys for sending t

RE: $r->register_cleanup limits?

2000-06-06 Thread Geoffrey Young
> -Original Message- > From: Jim Woodgate [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 06, 2000 9:48 AM > To: [EMAIL PROTECTED] > Subject: $r->register_cleanup limits? > > > > In a module I'm using register_cleanup so the client doesn't need to > wait for me to do a bunch of work.

RE: Apache::Dispatch

2000-06-06 Thread Geoffrey Young
> -Original Message- > From: Ken Williams [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 06, 2000 12:38 AM > To: Christopher Lee > Cc: [EMAIL PROTECTED] > Subject: Re: Apache::Dispatch > > > [EMAIL PROTECTED] (Christopher Lee) wrote: > >There's a real live working example if anybody

RE: [new module] Apache::Dispatch

2000-06-05 Thread Geoffrey Young
> -Original Message- > From: Matt Sergeant [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 05, 2000 12:25 PM > To: Stas Bekman > Cc: Geoffrey Young; '[EMAIL PROTECTED]'; 'Vivek Khera' > Subject: Re: [new module] Apache::Dispatch > > > O

RE: [new module] Apache::Dispatch

2000-06-05 Thread Geoffrey Young
> -Original Message- > From: Stas Bekman [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 05, 2000 12:19 PM > To: Geoffrey Young > Cc: '[EMAIL PROTECTED]'; 'Vivek Khera'; 'Matt Sergeant' > Subject: Re: [new module] Apache::Dispatch

[new module] Apache::Dispatch

2000-06-05 Thread Geoffrey Young
hi all... I'm not sure if some you remember the idea Vivek and Matt had about creating a handler that mapped, say, http://localhost/Foo/doit to Foo->doit() anyway, the relevant part of the thread, including some code, can be seen here: http://marc.theaimsgroup.com/?l=apache-modperl&m=95598609306

RE: [RFC: performance] Preloading Perl Modules at Server Startup

2000-06-05 Thread Geoffrey Young
> -Original Message- > From: Geoffrey Young [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 05, 2000 10:30 AM > To: 'Vivek Khera'; mod_perl list > Subject: RE: [RFC: performance] Preloading Perl Modules at Server > Startup > > > > [snip

RE: [RFC: performance] Preloading Perl Modules at Server Startup

2000-06-05 Thread Geoffrey Young
[snip] > > > > Also, I'd recommend using libapreq's Apache::Request if you > don't need > > the content generating parts of CGI.pm... which leads to an > > enhancement I'd like to see Doug add to libapreq's functionality: > > > > Currently, you need to do a call like this if you're using > > A

RE: [RFC: performance] Preloading Perl Modules at Server Startup

2000-06-05 Thread Geoffrey Young
> -Original Message- > From: Vivek Khera [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 05, 2000 10:09 AM > To: mod_perl list > Subject: Re: [RFC: performance] Preloading Perl Modules at Server > Startup > > > > "SB" == Stas Bekman <[EMAIL PROTECTED]> writes: > > SB> But an even

RE: Segmetation Fault problem

2000-06-02 Thread Geoffrey Young
. --Geoff > -Original Message- > From: Hughes, Ralph [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 02, 2000 1:57 PM > To: Geoffrey Young; 'Michael Todd Glazier'; ModPerl > Subject: RE: Segmetation Fault problem > > > Nope! > I didn't trust the RPM c

RE: Segmetation Fault problem

2000-06-02 Thread Geoffrey Young
are you both using the default RPM from redhat? IIRC, if you check the archives, you'll find similar reports for users of the RPM. Generally, RedHat RPMs use mod_perl as a DSO, and it seems mod_perl's DSO received lots of DSO upgrading/tuning after 1.21. I'd suggest rolling your own mod_perl +

err_headers_out Q

2000-06-02 Thread Geoffrey Young
hi all... this simple script: #!/usr/bin/perl my $r = shift; $r->err_headers_out->add('Set-Cookie' => "name=error"); warn "pre headers_out: " . $r->headers_out->get('Set-Cookie'); $r->send_http_header('text/plain'); warn "post headers_out: " . $r->headers_out->get('Set-Cookie'); print "done";

current_callback bug [ was: push_handlers weirdness]

2000-06-01 Thread Geoffrey Young
> -Original Message- > From: Kip Cranford [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 31, 2000 5:51 PM > To: Geoffrey Young > Cc: [EMAIL PROTECTED] > Subject: Re: push_handlers weirdness... > > > On: Wed, 31 May 2000 17:04:05 EDT Geoffre

push_handlers weirdness...

2000-05-31 Thread Geoffrey Young
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 shouldn't be doing... package Test::Test; use Apache::Cons

RE: elusive, disappearing notes?

2000-05-31 Thread Geoffrey Young
I've seen this before and always thought to attribute it to mod_dir creating a new request to properly map / to /index.html since any notes set are for the lifetime of the request only, the new request (representing /index.html) would/should have no notes... this makes sense in my head, but my h

RE: PerlSetupEnv bug?

2000-05-30 Thread Geoffrey Young
> -Original Message- > From: Stas Bekman [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 30, 2000 8:14 AM > To: Geoffrey Young > Cc: '[EMAIL PROTECTED]' > Subject: RE: PerlSetupEnv bug? > > > On Tue, 30 May 2000, Geoffrey Young wrote: > >

RE: PerlSetupEnv bug?

2000-05-30 Thread Geoffrey Young
> -Original Message- > From: Stas Bekman [mailto:[EMAIL PROTECTED]] > Sent: Monday, May 29, 2000 8:21 AM > To: Geoffrey Young > Cc: '[EMAIL PROTECTED]' > Subject: Re: PerlSetupEnv bug? > > > > I can't seem to get PerlSetupEnv to affect

RE: ques on error msg

2000-05-30 Thread Geoffrey Young
> -Original Message- > From: amy [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 26, 2000 3:27 PM > To: Geoffrey Young > Subject: Re: ques on error msg > > > Geoffrey Young wrote: > > > > -Original Message- > > > From: amy [mailto:

RE: mod_perl, multiple virtual hosts, and DBI weirdness

2000-05-26 Thread Geoffrey Young
you should be able to debug this pretty well by doing some or all of the following: set $Apache::DBI::DEBUG=2 in startup.pl set PerlWarn On in httpd.conf use strict; run in httpd -X see http://perl.apache.org/guide/porting.html#Sometimes_it_Works_Sometimes_it HTH --Geoff > -Original Mes

RE: ques on error msg

2000-05-26 Thread Geoffrey Young
> -Original Message- > From: amy [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 26, 2000 1:51 PM > To: [EMAIL PROTECTED] > Subject: ques on error msg > > > > every now and then I got some error messages in > the file /logs/error_log, but everything works fine. > > ## first error > U

RE: Sending multiple cookies per request

2000-05-26 Thread Geoffrey Young
> -Original Message- > From: Drew Taylor [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 26, 2000 10:44 AM > To: modperl > Subject: Sending multiple cookies per request > > > I'm trying to set multiple cookies with $r->header_out('Set-Cookie' => > $custCookie); I tried having 2 header_o

RE: global variables and reparsing question (low priority ;)

2000-05-26 Thread Geoffrey Young
> -Original Message- > From: Marc Lehmann [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 25, 2000 9:57 PM > To: Doug MacEachern > Cc: [EMAIL PROTECTED] > Subject: Re: global variables and reparsing question (low priority ;) > > > On Thu, May 25, 2000 at 11:58:38AM -0700, Doug MacEach

RE: Newbie: Apache::DBI Directive bug

2000-05-25 Thread Geoffrey Young
> -Original Message- > From: Nigel Hamilton [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 25, 2000 3:40 AM > To: [EMAIL PROTECTED] > Subject: Newbie: Apache::DBI Directive bug > > > Hi, > I've got a showstopper bug ... > > Whenever I place the directive to load Apache::

RE: Cookies

2000-05-24 Thread Geoffrey Young
> -Original Message- > From: Paul [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 23, 2000 7:39 PM > To: [EMAIL PROTECTED] > Subject: Re: Cookies > > > > Is there an easier way to accomplish this? I seem to recall > > that Apache has a simplfied way of setting a cookie upon the > > ini

RE: unsubscribe instructions

2000-05-23 Thread Geoffrey Young
egads... http://perl.apache.org/#maillists > -Original Message- > From: Jon Wasserman [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 23, 2000 1:12 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: unsubscribe instructions > > > Yeah!!! ME TOO. How the heck do I unsubscribe.

RE: PerlTransHandler question.

2000-05-23 Thread Geoffrey Young
time to pick up the Eagle book...   check out http://www.modperl.com/   specifically http://www.modperl.com/book/chapters/ch7.html#The_URI_Translation_Phase   HTH   --Geoff -Original Message-From: Antonio Pascual [mailto:[EMAIL PROTECTED]]Sent: Tuesday, May 23, 2000 9:59 AMTo: [

RE: PerlFreshRestart Question/Problem

2000-05-19 Thread Geoffrey Young
> -Original Message- > From: David Veatch [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 19, 2000 11:48 AM > To: [EMAIL PROTECTED] > Subject: PerlFreshRestart Question/Problem > > > Greetings, > > [i sent this once, but think it got hung up at the mail server... my > apologies if thi

RE: Confusion on Apache::DBI

2000-05-18 Thread Geoffrey Young
> -Original Message- > From: Niral Trivedi [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 18, 2000 3:57 PM > To: Geoffrey Young > Cc: '[EMAIL PROTECTED]' > Subject: Re: Confusion on Apache::DBI > > > Geoff, > > I know, once child dies, db

RE: Confusion on Apache::DBI

2000-05-18 Thread Geoffrey Young
> -Original Message- > From: Niral Trivedi [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 18, 2000 3:15 PM > To: Geoffrey Young > Cc: '[EMAIL PROTECTED]' > Subject: Re: Confusion on Apache::DBI > > > Thanks Geoff, > > You were right... I

PerlSetupEnv bug?

2000-05-18 Thread Geoffrey Young
I can't seem to get PerlSetupEnv to affect my perl-bin anyplace other than in the perl-bin tag that is: PerlSetupEnv Off Alias /perl-bin/ /usr/local/apache/perl-bin/ SetHandler perl-script PerlHandler Apache::Registry Options +ExecCGI Order Allow,Deny Allow from All #

RE: Want to work at a Game company?

2000-05-18 Thread Geoffrey Young
> -Original Message- > From: Buddy Lee Haystack [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 18, 2000 1:23 PM > To: Graf, Chris > Cc: [EMAIL PROTECTED] > Subject: Re: Want to work at a Game company? > > > I don't think an apology is in order. According to Jason's > reply, you did

RE: Confusion on Apache::DBI

2000-05-18 Thread Geoffrey Young
> -Original Message- > From: Niral Trivedi [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 18, 2000 1:11 PM > To: '[EMAIL PROTECTED]' > Subject: Confusion on Apache::DBI > > > All, > > Sorry if this question sounds stupid.. but I am new to mod_perl and > Apache::DBI.. I have successf

RE: Want to work at a Game company?

2000-05-18 Thread Geoffrey Young
> -Original Message- > From: Graf, Chris [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 18, 2000 1:09 PM > To: [EMAIL PROTECTED] > Subject: RE: Want to work at a Game company? > > > This was the default posting from HR. I should have thrown > in the mod_perl > requirement when sendin

RE: getting the hostname from a TransHandler

2000-05-17 Thread Geoffrey Young
> -Original Message- > From: Roger Espel Llima [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 17, 2000 3:22 PM > To: Geoffrey Young > Cc: [EMAIL PROTECTED] > Subject: Re: getting the hostname from a TransHandler > > > On Wed, May 17, 2000 at 03:15:01PM

RE: getting the hostname from a TransHandler

2000-05-17 Thread Geoffrey Young
> -Original Message- > From: Roger Espel Llima [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 17, 2000 2:52 PM > To: [EMAIL PROTECTED] > Subject: getting the hostname from a TransHandler > > > Hi, > > I need to get the "Host:" header sent by the client, from a > TransHandler. Sho

RE: Setting authentication via a PerlInitHandler?

2000-05-17 Thread Geoffrey Young
you definitely do want to pass the coderef to push_handlers... ok, maybe I get what's going on... PerlAuthenHandler will only be called if AuthName, AuthType, and require directives are set in httpd.conf (or at least, so I gather from the docs). also from the docs, all three of those directives

RE: Apache::DBI and autocommit

2000-05-17 Thread Geoffrey Young
> -Original Message- > From: Perrin Harkins [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 16, 2000 10:32 PM > To: William Deegan > Cc: [EMAIL PROTECTED] > Subject: Re: Apache::DBI and autocommit > > > On Tue, 16 May 2000, William Deegan wrote: > > If autocommit is not set and a scri

RE: CGI::Delete for Apache::Request

2000-05-16 Thread Geoffrey Young
> -Original Message- > From: Doug MacEachern [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 16, 2000 2:27 AM > To: Geoffrey Young > Cc: Michael Blakeley; [EMAIL PROTECTED] > Subject: RE: CGI::Delete for Apache::Request > > > > +=item parms > > t

RE: Header Sending Bug?

2000-05-15 Thread Geoffrey Young
> -Original Message- > From: Jeff Beard [mailto:[EMAIL PROTECTED]] > Sent: Sunday, May 14, 2000 11:42 AM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: Header Sending Bug? > > > I don't see a problem with this but maybe I'm missing your point. :) well, if his point was that

RE: CGI::Delete for Apache::Request

2000-05-15 Thread Geoffrey Young
> -Original Message- > From: Doug MacEachern [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 12, 2000 2:02 PM > To: Michael Blakeley > Cc: [EMAIL PROTECTED] > Subject: Re: CGI::Delete for Apache::Request > > > On Sat, 6 May 2000, Michael Blakeley wrote: > > > I've been migrating some c

RE: Virtual servers mixing up "require"d scripts

2000-05-11 Thread Geoffrey Young
> -Original Message- > From: Ged Haywood [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 11, 2000 12:26 PM > To: [EMAIL PROTECTED] > Subject: Re: Virtual servers mixing up "require"d scripts > > > Hi there, > > On Thu, 11 May 2000, Uri Bernstein wrote: > > > Hi, > > In order to prov

RE: Best approach for loading several modules

2000-05-11 Thread Geoffrey Young
> -Original Message- > From: Martin Wood [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 11, 2000 10:38 AM > To: [EMAIL PROTECTED] > Subject: Re: Best approach for loading several modules > > > Thanks for the replies so far all - things are already > becoming clearer. > > > If you ad

RE: Registry error

2000-05-10 Thread Geoffrey Young
see http://perl.apache.org/guide/troubleshooting.html#Can_t_undef_active_subrout ine for a bit of help... a scouring of the archives also suggests that Apache::SIG has problems with 5.005 (http://forum.swarthmore.edu/epigone/modperl/sniwhoxzer/3.0.5.32.19980805091 [EMAIL PROTECTED]) but that wa

RE: Wierd error log entry:

2000-05-10 Thread Geoffrey Young
for what it's worth, I've seen that on my development box too - I usually just do a stop and start instead of relying on StatINC when the error is frequent... --Geoff > -Original Message- > From: Matt Sergeant [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 10, 2000 7:56 AM > To: [EMAI

RE: Newbie Question -

2000-05-09 Thread Geoffrey Young
> -Original Message- > From: Drew Taylor [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 09, 2000 9:08 AM > To: Peter Haworth > Cc: [EMAIL PROTECTED] > Subject: Re: Newbie Question - > > > Peter Haworth wrote: > > > > Drew Taylor wrote: > > > What I would really like is a module which

RE: Newbie Question -

2000-05-08 Thread Geoffrey Young
> -Original Message- > From: Doug MacEachern [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 05, 2000 6:22 PM > To: Geoffrey Young > Cc: 'Pierre J. Nicolas'; [EMAIL PROTECTED] > Subject: RE: Newbie Question - > > > > > mod_perl override

RE: Apache does not like

2000-05-05 Thread Geoffrey Young
> -Original Message- > From: Todd Strand [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 05, 2000 12:59 PM > To: [EMAIL PROTECTED] > Subject: Apache does not like > > > Amici, > > I created my httpd (Apache 1.3.12) using the mod_perl 1.23 > install process. > The system used to have

RE: Newbie Question

2000-05-05 Thread Geoffrey Young
you'll find a great many questions answered in the mod_perl guide... http://perl.apache.org/guide/troubleshooting.html#Undefined_subroutine_Apach e_RO --Geoff > -Original Message- > From: Pierre J. Nicolas [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 05, 2000 10:15 AM > To: [EMAIL PRO

RE: Newbie Question -

2000-05-05 Thread Geoffrey Young
> -Original Message- > From: Pierre J. Nicolas [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 05, 2000 10:00 AM > To: [EMAIL PROTECTED] > Subject: Newbie Question - > > > Good Morning, > > I just started using mod_perl, I'm still using the CGI.pm > module, but I > plan > to convert.

RE: [Q ]Differences between RequestNotes and Request ?

2000-05-05 Thread Geoffrey Young
  -Original Message-From: Thierry-Michel Barral [mailto:[EMAIL PROTECTED]]Sent: Friday, May 05, 2000 9:29 AMTo: [EMAIL PROTECTED]Subject: [Q ]Differences between RequestNotes and Request ? Hi there,   sorry for this "beginner question".    no bother - RequestNotes i

[ANNOUNCE] Apache::RequestNotes_0.04

2000-05-05 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-RequestNotes_0.04.tar.g z has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-RequestNotes_0.04.tar.gz size: 4579 bytes md5: cafae76db41baf1b109316a0987bf170 Apache::RequestNotes now supports file uploads... Chan

RE: Why does $r->print() dereference its arguments?

2000-05-03 Thread Geoffrey Young
> -Original Message- > From: Stas Bekman [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 03, 2000 2:23 PM > To: Geoffrey Young > Cc: mod_perl list > Subject: RE: Why does $r->print() dereference its arguments? > > > > > -Original Message-

RE: Why does $r->print() dereference its arguments?

2000-05-03 Thread Geoffrey Young
> -Original Message- > From: Stas Bekman [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 03, 2000 2:07 PM > To: Geoffrey Young > Cc: mod_perl list > Subject: RE: Why does $r->print() dereference its arguments? > > > On Wed, 3 May 2000, Geoffrey

RE: Why does $r->print() dereference its arguments?

2000-05-03 Thread Geoffrey Young
interesing behavior - print behaves the same way... however, when you concat the reference to another scalar things work right... $r->print($foo.\$foo); yields: fooSCALAR(0xXWHOOPSX) --Geoff > -Original Message- > From: Jeffrey W. Baker [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, Ma

<    4   5   6   7   8   9   10   >