For whatever reason, the default install of Farcry (I’m using FC 3.0.2) does not allow you to add images to containers. This is extremely easy to fix.
The Handpicked Rule looks at all types installed in COAPI Management and checks for the flag bScheduled=”1″. dmImage does not have that by default. So, to fix this, extend dmImage. dmImage.cfc goes in /farcry/project/packages/types/. The contents of dmImage.cfc are:
<cfcomponent extends="farcry.farcry_core.packages.types.dmImage"
displayName="Images"
bSchedule="1"
bUseInTree="0">
</cfcomponent>
It’s as easy as that!
