Re: Location Directive Problem

2000-08-18 Thread Tony Whyte

To close loop , I discovered I had redundant  directives for
/hello/world amongst my various *.conf files. Once I got rid of the
extras I was good to go. Thanks for ideas !

Tony

Tony Whyte wrote:

> Running apache-1.3.11, mod_perl-1.24, irix6.5.5
>
> this works: (gets handled by mod_perl)
>
> 
>   SetHandler perl-script
>   PerlHandler Apache::Hello
> 
>
> this doesnt:
>
> 
>   SetHandler perl-script
>   PerlHandler Apache::Hello
> 
>
> Tried quoting "/hello/world" I still get  "File does not exist:
> /usr/local/apache/htdocs/hello/world" in logs.
>
> Is there some other directive Ive missed or misconfigured.
>
> Thanks
>
> Tony




Re: Location Directive Problem

2000-08-18 Thread Stas Bekman

On Thu, 17 Aug 2000, Tony Whyte wrote:

> 
> Running apache-1.3.11, mod_perl-1.24, irix6.5.5
> 
> this works: (gets handled by mod_perl)
> 
> 
>   SetHandler perl-script
>   PerlHandler Apache::Hello
> 
> 
> this doesnt:
> 
> 
>   SetHandler perl-script
>   PerlHandler Apache::Hello
> 
> 
> Tried quoting "/hello/world" I still get  "File does not exist:
> /usr/local/apache/htdocs/hello/world" in logs.
> 
> Is there some other directive Ive missed or misconfigured.

Are you sure that you don't have a directory called /hello under the
DocRoot?

Anyway, running the request under strace should reveal more details:
http://thingy.kcilink.com/modperlguide/debug/Using_the_System_Calls_Trace.html

> 
> Thanks
> 
> Tony
> 
> 
> 



_
Stas Bekman  JAm_pH --   Just Another mod_perl Hacker
http://stason.org/   mod_perl Guide  http://perl.apache.org/guide 
mailto:[EMAIL PROTECTED]   http://apachetoday.com http://jazzvalley.com
http://singlesheaven.com http://perlmonth.com   perl.org   apache.org





Location Directive Problem

2000-08-17 Thread Tony Whyte


Running apache-1.3.11, mod_perl-1.24, irix6.5.5

this works: (gets handled by mod_perl)


  SetHandler perl-script
  PerlHandler Apache::Hello


this doesnt:


  SetHandler perl-script
  PerlHandler Apache::Hello


Tried quoting "/hello/world" I still get  "File does not exist:
/usr/local/apache/htdocs/hello/world" in logs.

Is there some other directive Ive missed or misconfigured.

Thanks

Tony