I've developed a search engine that takes advantage of Verity Cfsearches for a
client using ColdFusion7 as part of a webserver overhaul project. The
collections/indexing/etc were working normally on the new server until it moved
to the client's site. ColdFusion needed to be reinstalled when we moved it,
and since then the collections have refused to index properly, returning the
following error:
Server Error
The server encountered an internal error and was unable to complete your
request.
JRun closed connection.

cfserver.log shows no exception dump.

The indexing code looks something like this:
<!--Query detail removed to protect client secuirty-->
<cfquery name="descriptions" datasource="..." dbtype="ODBC">
...</cfquery>

<cfquery name="captions" datasource="..." dbtype="ODBC">
...</cfquery>

<cfquery name="vendors" datasource="..." dbtype="ODBC">
...</cfquery>

<cfquery name="productlines" datasource="..." dbtype="ODBC">
...</cfquery>

<cfindex collection="DescriptSearch" action="Refresh" type="Custom"
body="Description" title="ItemNumber" key="ItemNumber" query="descriptions">

<cfindex collection="CaptionSearch" action="Refresh" type="Custom"
body="CAPTION" title="ItemNumber" key="ItemNumber" query="captions">

<cfindex collection="VendorSearch" action="Refresh" type="Custom"
body="Vendor" title="ItemNumber" key="ItemNumber" query="vendors">

<cfindex collection="PartSearch" action="Refresh" type="Custom"
body="ItemNumber" title="ItemNumber" key="ItemNumber" query="descriptions">

<cfindex collection="LineSearch" action="Refresh" type="Custom"
body="ProductLine" title="ItemNumber" key="ItemNumber" query="productlines">

Any one have any idea what's going wrong/experienced this before? Any
recommendations of how we can get around it?

Thanks