Daniel S. Reichenbach wrote:
> > The host is listening on www.opensa.org on port 80. When i leave the
> > prefix field empty, all images disapper from the pages, even those on
> > the admin site. When i add the prefix "/", images come back, but any
> > url requires an additional /, e.g. //about/.
> >
> > With beta 6 i had no prefix and all was working ok. Any ideas?
> > BTW: i left the site running without prefix, so if you want to see
> > the effect...
>
> Just one addition: when i try to access an image direct (e.g.
> http://www.opensa.org/images/logo_02.gif), i always get the root
> page.
What appears to be happening is that for all requests that do match
against the host record but not to a valid resource midgard serves
the root page. I haven't yet figured out why, and I'm currently not
behind my workstation, but could you st loglevel to debug and see what
the attached patch reports? I'll look into it later, but do file a bug
report.
Emile
--- mod_midgard.c Sun Dec 3 16:06:03 2000
+++ mod_midgard.c.why Sun Dec 3 16:10:51 2000
@@ -1226,8 +1226,14 @@
try_filetemplates(r, rcfg, dcfg, &ftstatus);
if (rcfg->resource.status != OK) {
+ ap_log_rerror(APLOG_MARK, APLOG_DEBUG | APLOG_NOERRNO,
+ rcfg->req, "Midgard: Not handling %s (%d)",
+ r->uri, rcfg->resource.status);
return rcfg->resource.status;
}
+ ap_log_rerror(APLOG_MARK, APLOG_DEBUG | APLOG_NOERRNO,
+ rcfg->req, "Midgard: handling %s (%d)",
+ r->uri, rcfg->resource.type);
mgd_set_blobdir(rcfg->mgd, dcfg->blobdir);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]