Hallo Rusty,

Am Dienstag, 18. November 2003 um 06:45:10 schriebst du:

> So, basically, what the hell? How is random input getting into my ops
> list? 

I noticed the same thing here, but in a worse fashion. Basically every
single URL that should not be handled by scoop worked *exactly once*
(after apache restart) and thereafter
- got catched by scoop (and returned the mainpage).
- showed up in the ops list

I resorted to pushing everything non-scoop into my httpd.conf forcing
it to the default apache handler. This is not nice or elegant (see
attached fragment below), but works.

I was able to pinpoint the problem to updating
scoop/lib/Scoop/ApacheHandler.pm from 1.63 to 1.69 (reverting to the
old version makes the problem disappear), but that's where my perl
knowledge stops.

  <Location ~ "^/(robots\.txt|favicon\.ico|dynamic-comments\.js|backend\.rdf)$">
    SetHandler default-handler
  </Location>
  <Location /images>
    SetHandler default-handler
  </Location>
  <Location /adm>
    SetHandler default-handler
  </Location>
  <Location /i>
    SetHandler default-handler
  </Location>
  <Location /t>
    SetHandler default-handler
  </Location>
  <Location /res>
    SetHandler default-handler
  </Location>
  <Location /err>
    SetHandler default-handler
  </Location>

Henning


-- 
Henning Schroeder, Dipl.-Psych.
mailto:schroeder at psychologie.uni-wuerzburg.de