Hello,
we are trying to switch from coldfusion to lucee, but get the following issue when using a mapping with cfimport: “invalid definition of the attribute taglib [/test]”
Do application-mappings dont work in 5.3.3.62?
guess it should work since: https://luceeserver.atlassian.net/projects/LDEV/issues/LDEV-2051?filter=allissues&orderby=priority%20DESC&keyword=mapping%20cfimport is fixed.
Any idea?
Code:
Application.cfc
component{
this.mappings["/test"] = "E:\xampp7\htdocs";
}
test.cfm
<cfdump var="#GetApplicationSettings()#"/>
<cfdump var="#expandPath("/test")#"/>
<cfimport prefix="test" taglib="/test" />
<test:cgi />
The expandPath work, the cfimport not.
Thank you,
David