Nov 28, 2005 #1 minli98 IS-IT--Management Joined Aug 30, 2005 Messages 178 Location US Hi, Is there a way to run custom tags that are in another directory? Thank you. Regards, Min
Nov 28, 2005 #2 krisbrixon Programmer Joined May 10, 2002 Messages 371 Location US yup there is a setting in the administrator to map custom tags to where ever you want. Kris Brixon www.brixon.org Upvote 0 Downvote
yup there is a setting in the administrator to map custom tags to where ever you want. Kris Brixon www.brixon.org
Nov 28, 2005 #3 imstillatwork IS-IT--Management Joined Sep 26, 2001 Messages 1,605 Location US use cfmodule to call it and pass attributes to it. You can call a custom tag as a relative path with cfmodule. <cfmodule path="relative_path/tag_name.cfm" yourattribute="yourvalue" anotherattribute="anothervalue" ...> If the path is out of reach of the current site, you will need a admin mapping for custom tags. Upvote 0 Downvote
use cfmodule to call it and pass attributes to it. You can call a custom tag as a relative path with cfmodule. <cfmodule path="relative_path/tag_name.cfm" yourattribute="yourvalue" anotherattribute="anothervalue" ...> If the path is out of reach of the current site, you will need a admin mapping for custom tags.
Nov 28, 2005 Thread starter #4 minli98 IS-IT--Management Joined Aug 30, 2005 Messages 178 Location US Ok thanks. I will give it a try. Min Upvote 0 Downvote