I finally found the source of the problem. In farcry_core/packages/types/dmImage.cfc, rendorURLImagePath was setting the image path as /images/filename. By prepending application.url.webroot to the image path as follows corrected the problem for those projects where the installation is in a subdirectory:
<cfset imagePath = Insert(application.url.webroot, imagePath, 0)> thanks
