I have modules controlling all the files and their access and content  in the 
directy.  I have no idea 
really why SSI is shut down.  I never used it before.

I beleive it worked when the modules are commented out.  Could I 
do something to prevent the SSI from being luanched after the
return OK from the modules?

the conf file looks like this:

erverRoot "/usr/local/apache-merck"
#LockFile /usr/local/apache-merck/logs/httpd.lock
PidFile /usr/local/apache-merck/logs/httpd.pid
ScoreBoardFile /usr/local/apache-merck/logs/httpd.scoreboard
Timeout 300
KeepAlive On
MaxKeepAliveRequests 1000
KeepAliveTimeout 15
MinSpareServers 5
MaxSpareServers 10
StartServers 10
MaxClients 150
MaxRequestsPerChild 0
Port 8080
User nobody
Group nobody
ServerAdmin roliver@devel-lls

ServerName 192.168.1.240

DocumentRoot "/usr/local/apache-merck/htdocs"

<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

<Directory "/usr/local/apache-merck/htdocs">
    Options Indexes FollowSymLinks MultiViews Includes
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>


###########################Ruben's Additional##########################
<LOCATION "/merck/pro/hiv">
#We need to check everyone for a cookie and redirect if need be
    SetHandler perl-script
    PerlHandler Apache::CHOOSE
</LOCATION>


<Location "/merck/pro/hiv/home2.html">
    SetHandler perl-script
    PerlHandler Apache::LOGIN

</Location>

<Location "/merck/pro/hiv/home.html">
    SetHandler perl-script
    PerlHandler Apache::LOGIN
</Location>

<Directory "/usr/local/apache-merck/htdocs/merck/pro/hiv/crixivan">
    SetHandler perl-script
#    PerlAccessHandler Apache::GATEKEEPER
#    PerlSetVar Gate open
    PerlHandler Apache::CHOOSE2
    Options Indexes FollowSymLinks MultiViews Includes
    AllowOverride All
#    Order deny,allow
    Allow from all
</Directory>

<Directory "/usr/local/apache-merck/htdocs/merck/pro/hiv/crixivan_stocrin">
#    PerlAccessHandler Apache::GATEKEEPER
    SetHandler perl-script
    PerlHandler Apache::CHOOSE2
    Options Indexes FollowSymLinks MultiViews Includes
    AllowOverride All
#    Order deny,allow
    Allow from all
</Directory>


######################################################################



<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
</Files>

UseCanonicalName On

<IfModule mod_mime.c>
    TypesConfig /usr/local/apache-merck/conf/mime.types
</IfModule>

DefaultType text/plain

<IfModule mod_mime_magic.c>
    MIMEMagicFile /usr/local/apache-merck/conf/magic
</IfModule>

HostnameLookups Off

ErrorLog /usr/local/apache-merck/logs/error_log

LogLevel warn

LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine
d
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

CustomLog /usr/local/apache-merck/logs/access_log common
ServerSignature On

    Alias /icons/ "/usr/local/apache-merck/icons/"

    <Directory "/usr/local/apache-merck/icons">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>

    <Directory "/usr/local/apache-merck/cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>

</IfModule>
<IfModule mod_autoindex.c>

    IndexOptions FancyIndexing

    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*

    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core

    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^

    DefaultIcon /icons/unknown.gif

    AddDescription "GZIP compressed document" .gz
    AddDescription "tar archive" .tar
    AddDescription "GZIP compressed tar archive" .tgz

 
    ReadmeName README
    HeaderName HEADER

    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

</IfModule>
<IfModule mod_mime.c>
    AddEncoding x-compress Z
    AddEncoding x-gzip gz tgz

    AddLanguage da .dk
    AddLanguage nl .nl
    AddLanguage en .en
    AddLanguage et .ee
    AddLanguage fr .fr
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage it .it
    AddLanguage ja .ja
    AddCharset ISO-2022-JP .jis
    AddLanguage pl .po
    AddCharset ISO-8859-2 .iso-pl
    AddLanguage pt .pt
    AddLanguage pt-br .pt-br
    AddLanguage ltz .lu
    AddLanguage ca .ca
    AddLanguage es .es
    AddLanguage sv .se
    AddLanguage cz .cz

    <IfModule mod_negotiation.c>
        LanguagePriority en da nl et fr de el it ja pl pt pt-br ltz ca es sv
    </IfModule>

    AddType application/x-tar .tgz

    AddType text/html .html
    AddHandler server-parsed .html
    XBitHack On


</IfModule>
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0

</IfModule>




Ruben

> Can you be more specific about what you're trying to do?  You can still use
> 
> mod_include with mod_perl installed, and you can use Apache::SSI either
> alone or as a filter with Apache::Filter.  Does that help?
> 
> - Perrin
> 
> (P.S. I'm in Brooklyn too!)
> 

Reply via email to