Mark, > When I added an image to my image library, it created the path / > images/ > dmImage/blah/blah... > > Is it possible to change the location from /images/ to, for > example, / > assets/ ?
Yes. 1. Extend dmImage.cfc in your project. 2. Copy over the three cfproperty tags for the three images and update the metadata to point to /assets/... instead of /images/... 3. If you have any custom types using images, do the same. 4. edit projects/[projectName]/config/_serverSpecificVars.cfm 4a. add the following somewhere within the file: <cfset application.url.imageRoot = application.url.webroot & "/ assets" /> 5. Update the application scope (?updateapp=1) Regards, -- Jeff Coughlin Web Application Developer http://jeffcoughlin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/farcry-dev?hl=en -~----------~----~----~----~------~----~------~--~---
