I tried creating a verity collection but the titles are coming back empty.

Here is the test code for the search results:

<CFSEARCH Name="this_search"
Collection="FreshSummit"
Criteria = "#Form.Criteria#"
MaxRows = "#Evaluate(Form.MaxRows + 1)#"
StartRow = "#Form.StartRow#">


Here are the records that were found:<p>

<cfoutput>
#this_search.recordcount# Total results / #this_search.recordssearched#
<BR><BR>
</cfoutput>

<CFOUTPUT query="this_search">

#currentrow#. <a href="#url#">{#this_search.title#}</A> - s: #score#<BR>
#summary#
<BR><BR>
</CFOUTPUT>

--------------------------------------

Here is the test code for the index page:

<cflock timeout = "30">

<cfindex
action = "update"
collection = "FreshSummit"
key = "D:\Inetpub\wwwroot\pma2003\users\PMA\WWW\fsdevare a"
type = "path"
title = "Test"
URLpath = "http://www.pma.com/fsdevarea/"
extensions = ".cfm, .pdf"
recurse = "Yes">

</cflock>

--------------------
Can anyone tell me why this isn't returning the title? what am i missing?