in reply to Re: your mod_perl configurations
in thread your mod_perl configurations

my "question" was, are there some useful mod_perl features you can add just in your apache conf instead of changing too much sourcecode. or using other modules instead of this Registry, that protect you from simple DoS attacks, whatever, nice features you use and that i can use and understand without reading 300 pages of the modperl book. sorry if this was a stupid question, I'm a mod_perl newbie.

Replies are listed 'Best First'.
Re^3: your mod_perl configurations
by cbrandtbuffalo (Deacon) on Feb 20, 2006 at 18:42 UTC
    Not a stupid question at all; I just wasn't clear what it was. :)

    Registry pretty much does the trick. Some modules to check out are Apache::DBI and possibly Apache::Template.

    As far as getting into special settings in the server, that's where you get advanced. mod_perl gives you full access to Apache internals via perl code in handlers. Once you start writing handlers, you can respond to requests however you like, but you'll need to read a decent amount of documentation before you can really take advantage of these features. Note that this requires knowledge of Apache as much as mod_perl.