Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: setting up a perl module to replace Apache's autoindex

by Chmrr (Vicar)
on Jul 31, 2002 at 22:12 UTC ( [id://186622]=note: print w/replies, xml ) Need Help??


in reply to setting up a perl module to replace Apache's autoindex

If this is meant to be run only in a mod_perl environment, your best bet is probably to make Drall into a module, with a handler which looks something like:

use Apache::Constants qw(:common DIR_MAGIC_TYPE); sub handler { $r = shift; return DECLINED unless $r->content_type eq DIR_MAGIC_TYPE; do_stuff(); }

Documentation on the stages of an Apache request, and hence the uses of the mod_perl hooks into them, can be found in the excellent mod_perl book, which has some chapters available online. Chapter 7 may help with what you are trying to do.

perl -pe '"I lo*`+$^X$\"$]!$/"=~m%(.*)%s;$_=$1;y^`+*^e v^#$&V"+@( NO CARRIER'

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://186622]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (7)
As of 2024-03-28 19:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found