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

Whenever I try to access:

http://www.mycustdomain.com/name.cfc

I get this error:

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

What can be happening?

This is what I am invoking:

<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?

What is the code that you are using to call the CFC?

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