I have never used cfindex before but I have a site that uses it. I had to reload cfadministrator onto a new server and transfer all the webs.
CODE:
<CFQUERY NAME=OBJECTS DATASOURCE="#SITENAME#">
SELECT
OBJECTS.OID,
OBJECTS.SID,
OBJECTS.TYPE,
OBJECTS.TITLE,
OBJECTS.TEXT,
OBJECTS.LINK,
SECTIONS.SID,
SECTIONS.SHORT_NAME,
SECTIONS.LONG_NAME
FROM
OBJECTS,
SECTIONS
WHERE
OBJECTS.SID = SECTIONS.SID
AND
OBJECTS.TYPE <> 'L'
</CFQUERY>
returns 200+ recs
<!---INDEX---->
<CFINDEX COLLECTION="#SITENAME#"
ACTION="Update"
TYPE="Custom"
TITLE="TITLE"
KEY="OID"
BODY="TITLE,TEXT,TYPE,SHORT_NAME,LONG_NAME"
QUERY="OBJECTS">
ERROR:
Error occurred in tag CFINDEX
Collection name not found
The error occurred while processing an element with a general identifier of (CFINDEX), occupying document position (18:2) to (24:17).
Thanks for any help on this
Wes
CODE:
<CFQUERY NAME=OBJECTS DATASOURCE="#SITENAME#">
SELECT
OBJECTS.OID,
OBJECTS.SID,
OBJECTS.TYPE,
OBJECTS.TITLE,
OBJECTS.TEXT,
OBJECTS.LINK,
SECTIONS.SID,
SECTIONS.SHORT_NAME,
SECTIONS.LONG_NAME
FROM
OBJECTS,
SECTIONS
WHERE
OBJECTS.SID = SECTIONS.SID
AND
OBJECTS.TYPE <> 'L'
</CFQUERY>
returns 200+ recs
<!---INDEX---->
<CFINDEX COLLECTION="#SITENAME#"
ACTION="Update"
TYPE="Custom"
TITLE="TITLE"
KEY="OID"
BODY="TITLE,TEXT,TYPE,SHORT_NAME,LONG_NAME"
QUERY="OBJECTS">
ERROR:
Error occurred in tag CFINDEX
Collection name not found
The error occurred while processing an element with a general identifier of (CFINDEX), occupying document position (18:2) to (24:17).
Thanks for any help on this
Wes