According to Roger M Clarke: > Sorry, I was premature oin believing that it was now working properly, just > to recap > I have now added > > valid_punctuation: -' > allow_numbers: true > extra_word_characters: . > > and re built the index > > and although it now accepts and uses a search string such as 161.73 it still > does not find the numbers, even just searching for 161
If I follow you correctly, you are indexing complete IP addresses, but you need to search for parts of IP addresses. Because htsearch is a word based search, and you've set it up to treat the whole IP address as a single word, you'll only get an exact match if you also search only for whole IP addresses. To search for parts, you'd need to use the prefix or substring fuzzy match algorithm in search_algorithm. You may also want to look for the IP addresses in your db.wordlist file to confirm that htdig did indeed index the IP addresses you asked it to. -- Gilles R. Detillieux E-mail: <[EMAIL PROTECTED]> Spinal Cord Research Centre WWW: http://www.scrc.umanitoba.ca/ Dept. Physiology, U. of Manitoba Winnipeg, MB R3E 3J7 (Canada) ------------------------------------------------------- This SF.NET email is sponsored by: AMD - Your access to the experts on Hammer Technology! Open Source & Linux Developers, register now for the AMD Developer Symposium. Code: EX8664 http://www.developwithamd.com/developerlab _______________________________________________ htdig-general mailing list <[EMAIL PROTECTED]> To unsubscribe, send a message to <[EMAIL PROTECTED]> with a subject of unsubscribe FAQ: http://htdig.sourceforge.net/FAQ.html

