CFSEARCH - VERITY PROBLEM
I get a 500 server error when doing a verity search...
All works well in CF5 - but not with CF8...
I am not sure what is up - but seems to be a custom tag issue...
Code below...
Verity Collection
---------------------
<CFINDEX
COLLECTION="allindex"
ACTION="Update"
TYPE="Custom"
Custom1="category"
Custom2="sitename"
KEY="url"
BODY="keywords, descript, sitename, category, subcat1, subcat2, url"
TITLE="sitename"
QUERY="medexplorersearch">
-------------------------
Search Coding... (I do know the customs are different - works fine in CF5)
-------------------------
<CFSEARCH NAME="search"
COLLECTION="allindex"
TYPE="Custom"
custom1="subcat1"
custom2="descript"
CRITERIA="#term#">
<table border=0 cellspacing=0 cellpadding=5>
<cfoutput query=search>
<tr>
<td valign=top class=verd9>
<b><a href="#key#" title="#custom2#">#search.title#</a></b>
<cfif len(custom2)><br><span class=verd8>#left(custom2, 150)#<cfif len(custom2) gt 150>...</cfif></span></cfif>
<br><span class=verd7>#key#</span>
</td></tr>
</CFOUTPUT>
</table>
-------------------------
