Hi
[ requesting http://localhost:8080/search/start4.html results in
"404 WWWOFFLE Not Searched" ]
I've traced the problem further, to misc.c:206, in SplitURL():
if(Url->host[i]==':')
if(atoi(&Url->host[i+1])==(Url->Protocol?Url->Protocol->defport:80))
Url->host[i]=0;
if(!Url->local && IsLocalHost(Url->host,1) && Url->Protocol &&
Url->Protocol==&Protocols[0])
...
Here, it is checked if the port number is right for the host+port being
local. Url->Protocol->defport is 80, but the port, where WWWOffle actually
listens, is 8080. (80 is Apache). Consequently, localhost:8080 does not
get identified as local. http-port is specified as 8080, in wwwoffle.conf.
Seems like the http-port setting does not make it into Protocols[0], or
so...
> I would guess that you have an error in the Udmsearch configuration,
> it is asking WWWOFFLE for a URL that has a hostname different from
> those listed in the LocalHost section of the configuration file.
No, that's correct.
bye