On Tue, 18 Nov 2003, Stephen Hardisty wrote:

> Howdy folks, my perl script won't execute (but it will try
> and download) and I don't know why. If I run it on the
> command line, no problems. It has execute permissions for
> everybody (including Apache). My httpd.conf looks like
> this:
>
> <Location /somedir>
>   SetHandler perl-script
>   PerlHandler Apache::Registry
>   Options ExecCGI
>   PerlSendHeader Off
> </Location>

Is there an Alias directive in httpd.conf:
  Alias /somedir/ "/usr/local/apache/someplace/"
present, pointing to a physical location where the
scripts lie? Alternatively, instead of
  <Location /somedir>,
does it make a difference if you use
  <Directory /usr/local/apache/someplace>

-- 
best regards,
randy kobes

-- 
Reporting bugs: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html

Reply via email to