Suddenly getting dreaded "Could not find the ColdFusion component or interface"
Coldfusion 2018, Linux server
This is on our development site but was working until last week. We've googled and see this is not uncommon and tried the suggested solutions such as creating a mapping, which seems the most popular, and a few others but nothing seems to fix the issue.
The development machine is shared so each developer is mapping their CFCs to their own unique location and each application has a unique name even on the same server, a hash is involved.
When we create the Create the object
<cfobject component="/#APPLICATION.cfcroot#.Security" name="sec">
It seems to find the Security CFC because the error is on the "extends" attribute which is set to a CFC called Authenticate.
<cfcomponent extends="Authenticate" accessors="true" output="false" persistent="false">
It can't find the Authenticate CFC which is in the same directory and throws the error, "Could not find the ColdFusion component or interface var.www.html.mark.financeonline.account_services.cfcs.Authenticate". Which is the correct location just replace the dots.
