Re: Verity problem

2003-02-18 Thread Stephen Moretti
Nyon, You need to do a CUSTOM index on your data rather than indexing your cfm documents. It is the content that is displayed from the database by those pages that you want to index, not the CF templates. Have a look at the CF documentation on CFINDEX using TYPE="CUSTOM" http://livedocs.macromed

RE: Verity problem

2001-07-27 Thread Stuart Miller
Try This: 1) Remove all punctuation from the string using regular expressions. 2) Strip out any extra spaces from the string so that you are left with only single spaces separating words. 3) Treat the string as a space separated list and loop around it. 4) In the loop, append to a new space separ

RE: Verity problem

2001-07-27 Thread Craig Dudley
Dont replace "and" and "not" etc replace " and " , " or " & " not " with the space at each side, works for me -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: 26 July 2001 17:18 To: CF-Talk Subject: Verity problem I'm new to this so go easy on me. I'm using verit

RE: Verity problem

2001-08-03 Thread Christian L. Watt
Adrian, You can search for those words if you replace them with no blanks, but make sure you put a space both before and after them. This should also only happen if you are splitting the string out to search the words one at a time. #replace(string, " and ", "", "all")# #replace(string,

RE: Verity problem

2001-08-03 Thread A . Little
IL PROTECTED]] > Sent: 02 August 2001 16:40 > To: CF-Talk > Subject: RE: Verity problem > > Adrian, > You can search for those words if you replace them with no blanks, > but make sure you put a space both before and after them. This should > also > on

RE: Verity Problem

2004-10-11 Thread Robertson-Ravo, Neil (RX)
Apoliogies this was an internal problem mailed to me...here it is again.. "I have an English collection (custom from db) which contains French words (eg. sécurité, président).  When searching the collection no results are returned even though the word exists. Any work arounds? I also have the same

Re: Verity Problem (solved)

2001-07-05 Thread kraybill
Well, I finally figgered out the cause of my Verity problem. When you set TYPE="File" in CFINDEX, the filename you use for the KEY must apparently be fully qualified with the path as well. My app is actually working now, but I have little hair left. The docs, I feel, are misleading.

RE: Verity problem running MX 6.1 J2EE under Tomcat 4.1.18 on Windows XP

2004-01-05 Thread Michael R. Levy
ED] Sent: Tuesday, December 16, 2003 10:37 AM To: CF-Talk Subject: RE: Verity problem running MX 6.1 J2EE under Tomcat 4.1.18 on Win dows XP You need to have the Verity libraries on the PATH environment variable so Java/CFMX will find them when it tries to open them. There are instructions for the

RE: Verity problem running MX 6.1 J2EE under Tomcat 4.1.18 on Win dows XP

2003-12-16 Thread Tom Jordahl
You need to have the Verity libraries on the PATH environment variable so Java/CFMX will find them when it tries to open them. There are instructions for the J2EE editions on where to set this path, I am not sure if they cover Tomcat. -- Tom Jordahl Macromedia Server Development -Original Me