RE: Any good way to index/search pdf docs via CF

2000-11-21 Thread Hayes, David
Check your documentation; it indicates that Verity collections support PDF files. Look at CFCOLLECTION, CFINDEX, and CFSEARCH. -Original Message- From: Paul Sinclair [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 21, 2000 3:41 PM To: CF-Talk Subject: Any good way to index/search pdf

RE: Any good way to index/search pdf docs via CF

2000-11-21 Thread Mark W. Breneman
My experience may be a little old here... My fist project, using CF 3.1 was just what you described. Searching pdfs. To index them you simple create a verity collection as you normally word but, you put the pfd extension in the place of html or cfm when setting up the collection. There was a

RE: Any good way to index/search pdf docs via CF

2000-11-21 Thread Jeff Beer
Yes - the Verity implementation that comes with CF will index PDF docs. I've used this on several commercial projects - works pretty well, actually. Just remember to optimize the collections if they change fairly often. Verity can be a bit slow with PDF files, depending on their size, etc. You

RE: Any good way to index/search pdf docs via CF

2000-11-21 Thread James McCullough
Try this. cfcollection action="create" collection="pdf_files" path="[fully_qualified_path]" cfindex action="refresh" key="[file path]" urlpath="[web directory mapping i.e. 'http://www.mysite.com/pdf/ ]" extensions=".pdf" recurse="Yes/No" Recurse will

Re: Any good way to index/search pdf docs via CF

2000-11-21 Thread Stephen M. Aylor
al Message - From: "Mark W. Breneman" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, November 21, 2000 2:55 PM Subject: RE: Any good way to index/search pdf docs via CF My experience may be a little old here... My fist project, using CF 3.1 was just what