Re: Apache configuration

2001-11-09 Thread Scott Lanning
On Fri, 9 Nov 2001, Christopher Hicks wrote: I've heard lots of people talking about doing Apache configuration via Perl sections and mod_perl, but I can't find any examples! I've looked on Sourceforge, the Guide, and dug through google. The Eagle book has the best stuff I've found so far, but

Re: Odd problem with Perl sections

2001-10-24 Thread Scott Lanning
On Wed, 24 Oct 2001, Tom Mornini wrote: 1 Perl 2$ErrorLog = |/home/tmornini/Source/ewingz/bin/spread_from_stdin.pl ERROR; 3 /Perl 4 ErrorLog |/home/tmornini/Source/ewingz/bin/spread_from_stdin.pl ERROR [snip] When I use the Perl section (which I need to allow the path to

Re: Mod_perl component based architecture

2001-10-16 Thread Scott Lanning
On Tue, 16 Oct 2001, Gargi Bodke wrote: i have been asked to suggest an architecture to seperate the business logic from the html. how is this done in modperl? i guess by using functions for the business logic. is there any other way? Maybe HTML::Mason, http://www.masonhq.com/ also does

Re: Setting Perl-stuff inside Perl section

2001-10-05 Thread Scott Lanning
On Fri, 5 Oct 2001, raptor wrote: How can I set in perl section, say : PerlModule Blah.pm PerlSetVar XXX On PerlSetVar YYY Off perl @PerlModule = qw(Blah); # add others to the list push @PerlSetVar, [ XXX = 'On' ]; push @PerlSetVar, [ YYY = 'Off' ]; /perl There's good examples in the eagle