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 seems that

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 want to

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, We just placed

RE: [ANNOUNCE] Apache::Reload 0.04

2000-08-30 Thread Douglas Wilson
? 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 as

RE: Client filehandle?

2000-08-02 Thread Douglas Wilson
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: 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 (hey I'm making it up

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

2000-07-31 Thread Douglas Wilson
n 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
I could see that had variable includes was HTML::DynamicTemplate. I'm going to have to make some decision soon, so we can start getting some work done :) Can anyone point me to some examples (to accelerate the learning curve) with this HTML::Tree?? Or any other pointers, opinions? TIA, Douglas

RE: Templating system

2000-07-27 Thread Douglas Wilson
/~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