Requirements
- Apache 2.X web server
- mod_perl 2.x with access to following Apache modules RequestRec, RequestIO, Filter, ServerUtil, SubRequest, Response
- HTML::Parser module
In order to install you need root access to your web server machine to modify
httpd.conf.
Setup
To setup FotoTagger Web Filter:
- Download the FotoTagger package
- Create a FotoTagger folder where Perl can find it
- Extract the contents of the FotoTagger package to that folder
- Add the following piece of code to your httpd.conf:
PerlModule Fototagger::Filter
- Add the following piece of code to your httpd.conf placed in VirtualHost/Directory/Location etc section:
PerlOutputFilterHandler Fototagger::Filter
This is a sample fragment of httpd.conf: PerlModule Fototagger::Filter
NameVirtualHost *:82
<VirtualHost *:82>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "/path/www"
ServerName dummy-host.example.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
PerlOutputFilterHandler Fototagger::Filter
</VirtualHost>
|