Thanks Jeff... I followed your suggested folder structure, it was a bit weird having it the reverse to the core (webskin/tags rather than tags/webskin).
I thought I may have had a naming conflict since the header file does an include of the tag library as well... but that was not it (it seems if a tag library is included in a template.. the header file... the callee page does not have reference to that tag library... hence the default farcry project includes the tag library in BOTH the header and main template, e.g. displaypageStandard, .cfm files).... I changed the name of the tag library include anyway, so it makes more sense from a code readability perspective. I found the cause of the problem, not really a solution.... well, not a 'proper' solution anyway. I find that if I hard code the reference to the tag library in my project folder it works.... I can use the template file from my own project directory: <cfimport taglib="/farcry/farcry_rad/tags/webskin" prefix="navigation"> The above works... my project directory is called farcry_rad... But the 'proper' way to reference my project, as used in many places in the farcry code causes a crash of some sort (no error... just blank page): <cfimport taglib="/farcry/#application.applicationname#/tags/webskin" prefix="navigation"> ... I have checked that #application.applicationname# resolves to my project name, farcry_rad, before the import tag line is executed. This syntax is used in so many other places I don't see how it could be a basic syntax problem. Just to be sure I built a string <cfset strTagPath=...... and tried to use the string as the taglib parameter value, but the same behaviour... no joy. Is this a known bug or have I messed things up!? No urgency for a response since code is working... and I was able to customise the tag library for the breadcrumb so it doesn't render the homepage.... but would be best to use #application.applicationname# rather than hard coding my project directory I suppose. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
