This week I just try to recall Fw1 framework. But, I faced fw1 core file error. Below screen has my folder structure,
Inside the lib folder, I have one more folder called a framework. The framework folder also has one.cfc & ioc.cfc files. Now, I'm trying to run my application in the browser. It's throwing below error.
Could not find the ColdFusion component or interface C:\ColdFusion2016\cfusion\wwwroot\try\Fw1Demo\framework\ioc.cfc
But, In my Application.cfc I have extended fw1 one.cfc core file.
component extends="lib.framework.one" output="false" {
}
But, I'm not sure why this is throwing an error.

Now, We can able to put fw1 framework core files in a different folder. We don't need to follow the fw1 mentioned folder structure. I mean,
framework/one.cfc & framework/ioc.cfc.But, for using different folder structure need to change the path in
framework/one.cfc. In this file, they are used as a static path to point out the ioc.cfc file. We need to change that path.In my above questions, I used
lib/framework/one.cfc & lib/framework/ioc.cfc. So, Inone.cfcfile, need to change the below code,By default, the above mentioned variables have the below values,
So, In this variables need to update our path.
Thanks,