Naren Dasu wrote:

> I seem to be having problems with Red Hat 6.1 & mod_perl. Compiled and
> installed from scratch. This is an out-of-the box Penguin Computer running
> RH6.1.
>
> The strange behavior that manifests itself as follows:
>
> Config 1
>         <Location /server-status>
>                 SetHandler server-status
>                 Order deny,allow
>                 Deny from all
>                 Allow from .divatv.com
>         </Location>
>
>         The above configuration fails, I get the "Client does not have permission"
> in the error_log file.
>
> Config 2
>
>         BUT this works ... I did this to test if the server-status modules were
> properly installed.
>
>         <Location /server-status>
>                 SetHandler server-status
>                 Order allow,deny
>                 Allow from all
>         </Location>
>
> I am running out of ideas on why Config 1 fails.  I also tried a bunch of
> chmod/chgrp commands to change the permissions on the files, but no luck.
> Could someone shed some light on this ?
>
> thanks a bunch
> naren
>
> At 12:26 PM 1/17/00 -0500, you wrote:
> >Clay wrote:
> >>
> >> so i am just wanting to know what anyone
> >> has found out on mod perl not working properly
> >> under redhat 6.1?
> >
> >If you install everything (including modperl) from RedHat's RPMs, no
> problem (I
> >did this on five very different boxes, some new, some upgraded). If you
> try to
> >do it yourself by building from sources, etc, ... oh well - then RedHat is in
> >the way and gets all confused..
> >Attachment Converted: "c:\eudora\attach\korte14.vcf"
> >

ok for server status im not sure but here is perl status 's block

<Location /perl-status>
  SetHandler  perl-script
  PerlHandler Apache::Status
  </Location>


as for modperl actually workin' my startup works as long as i dont put in additional
modules besides
use Apache::Registry();
use Apache::Constants();
use CGI qw(-compile :all);
 use CGI::Carp () ;
in my startup.pl

otherwise apache dies with no errors anywhere

if i try to add my own module, or any others it totally fails, and know one has found
out anything on this , by the sounds of it


i find it strange  that no one has seen this! since rh6.1 has been out since before
christmas

Reply via email to