From: Adam R. <Ad...@Kn...> - 2003-02-07 00:43:19
|
I added the "Options +ExecCGI" to the INSTALL file step 5, because my Apache Server was hiccuping without it. Fyi, Adam 5. Configure your Apache server to allow scripts in mod_pubsub/cgi-bin to be parsed by mod_perl, and to alias the URL "/kn" to pubsub.cgi. You can do this by adding lines like the following to httpd.conf. (You may need to adjust the filenames for your Apache document root.) <Directory /var/www/mod_pubsub/cgi-bin> <Files *.cgi> Options +ExecCGI SetHandler perl-script PerlHandler Apache::Registry PerlSendHeader On </Files> </Directory> Alias /kn /var/www/mod_pubsub/cgi-bin/pubsub.cgi |