Current equivalent to ApacheToolbo?

2010-12-01 Thread Alan Young
Is there an app for Apache2 that does the same thing ApacheToolbox ( http://apachetoolbox.com ) did for Apache 1.3? Or even a how to (indicating which plugins should be compiled statically at a bare minimum, which are ok to compile as dsos). -- Alan Young

Re: How to get a file listing

2010-02-18 Thread Alan Young
On Thu, Feb 18, 2010 at 13:20, ceauke wrote: > So my structure is like this: > \cgi-bin\myprog.cgi   < my program > \cgi-bin\mydir1\   <- this one can be seen by my program > \mydir2\    <- how do I show this content? opendir my $DH, '\mydir2\' or die "Unable to open mydir2: $!"; The

Re: Storing config values in-memory between sessions

2009-10-29 Thread Alan Young
2009/10/28 Mahesh Khambadkone : > Confused slightly by the Apache phases and how it plays with older CGI > scripts, what would be the best way to implement this in-memory cache > that can be dirtied from time to time? I would suggest using memcached. It's a daemon that will hold your data in memo

Re: Custom INC per-directory

2009-10-20 Thread Alan Young
Wouldn't using the Parent option ( http://perl.apache.org/docs/2.0/user/config/config.html#C_Parent_ ) work better for what you're trying to do? -- Alan