Nov 28, 2005 #1 minli98 IS-IT--Management Aug 30, 2005 178 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 May 10, 2002 371 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 Sep 26, 2001 1,605 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 Aug 30, 2005 178 US Ok thanks. I will give it a try. Min Upvote 0 Downvote