RE: slight mod_perl problem

2000-12-20 Thread Douglas Wilson
Would this be the reason? http://perl.apache.org/guide/config.html#Apache_Restarts_Twice_On_Start > -Original Message- > From: Jamie Krasnoo [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, December 20, 2000 3:21 PM > To: [EMAIL PROTECTED] > Subject: slight mod_perl problem > > > Ok, it seem

RE: database access

2000-11-08 Thread Douglas Wilson
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On > Behalf Of Greg Cope > Sent: Tuesday, November 07, 2000 10:53 AM > To: Jason Liu > Cc: [EMAIL PROTECTED] > Subject: Re: database access > > > Jason Liu wrote: > > > > Is Apache::DBI absolutely necessary if you w

RE: JOB - NYC - Looking for a Linux/Apache/mod_perl/mysql programmer

2000-09-15 Thread Douglas Wilson
> -Original Message- > From: Matt Sergeant [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 15, 2000 11:12 AM > To: Justin > Cc: [EMAIL PROTECTED] > Subject: Re: JOB - NYC - Looking for a Linux/Apache/mod_perl/mysql > programmer > > > On Fri, 15 Sep 2000, Justin wrote: > > > Hi, > >

RE: [ANNOUNCE] Apache::Reload 0.04

2000-08-30 Thread Douglas Wilson
spawn? Or do we care? :) TIA, Douglas Wilson

RE: getting rid of nested sub lexical problem

2000-08-16 Thread Douglas Wilson
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 16, 2000 2:17 AM > To: [EMAIL PROTECTED] > Subject: getting rid of nested sub lexical problem > > Below is a processed version of the increment_counter example from the > guide that works

RE: Client filehandle?

2000-08-02 Thread Douglas Wilson
> -Original Message- > From: Douglas Wilson [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 02, 2000 3:24 PM > To: Todd Caine; mod_perl > Subject: RE: Client filehandle? > Maybe (and I mean MAYBE): > local *STDOUT = \*$r; And of course, that should have been

RE: Client filehandle?

2000-08-02 Thread Douglas Wilson
nt to stdout. In my > handler I write something similar to: > > sub handler { > my $r = shift; > > # I want the output to go to the client, ($r->print()), > but instead it will only go to STDOUT > So I was trying something like: > > *STDOUT = \*r{IO}; Maybe (and I mean MAYBE): local *STDOUT = \*$r; HTH, Douglas Wilson

RE: How to use warnings in Apache::ASP?

2000-07-31 Thread Douglas Wilson
? Never heard of it, same as -w? warnings is NOT a module (someone called it that in another post). Its a pragma (new, as of perl 5.6), like 'use strict', which means you can turn it on or off locally in any block. (Or turn parts of it on or off). HTH, Douglas Wilson

RE: Templating system

2000-07-27 Thread Douglas Wilson
J. Lucas wrote: > > > > > http://www.best.com/~pjl/software/html_tree/ Is there a reason this is not on CPAN? It would have been nice to come up in a search. (I actually searched for 'template', so I'm not sure I would have ever found it anyway :) Cheers, Douglas Wilson

RE: Templating system

2000-07-27 Thread Douglas Wilson
es (to accelerate the learning curve) with this HTML::Tree?? Or any other pointers, opinions? TIA, Douglas Wilson