Filter access to Files on Apache

2001-07-09 Thread Thomas Bach
Hello list perhaps it is off-topic (sorry for that, but i hope that somebody of you can help me), but somehow i wish to have a solution with precompiled perl such as mod_perl or ... everything else which fits to my needs. I want to filter every access of for example all .jpg-files on my

Re: Filter access to Files on Apache

2001-07-09 Thread Ken Williams
[EMAIL PROTECTED] (Thomas Bach) wrote: perhaps it is off-topic (sorry for that, but i hope that somebody of you can help me), but somehow i wish to have a solution with precompiled perl such as mod_perl or ... everything else which fits to my needs. I want to filter every access of for example

Re: Filter access to Files on Apache

2001-07-09 Thread Ken Williams
[EMAIL PROTECTED] (Thomas Bach) wrote: At 11:17 09/07/01 -0500, you wrote: If you want to directly send a file, use: open(DATEI, ...) $r-send_fd(DATEI) close(DATEI) You can do an internal redirect using subrequests, if you want. See $r-lookup_uri(). what kind of object is $r ?