File not found: /CFIDE/componentutils/cfcexplorer.cfc

This is what I am invoking:

Code:
<cfcomponent>
	<cffunction name="namelisting" access="remote" returntype="query">
		 <cfquery name="qnamelisting" datasource="DSNName">
		 	select * from tblTestTable
		 </cfquery>
		<cfreturn qnamelisting>
	</cffunction>
</cfcomponent>

Is there any error?
 
I had the same problem this message is refering to a missing directory from your testing box. I traced the folder path and confirmed that it was not setup correctly. I copied the missing directory from another machine that had the correct setup. I'm sure theres a more technically way to explain it, but start with confirming your installation,, hope this helps.

Mike
 
Back
Top