我想创建一个简单的ColdBox应用程序。因此,我使用了this link中的说明并下载了coldbox_3.5.2。但当我尝试在浏览器中查看此url时:
http://127.0.0.1/coldbox_3.5.2/samples/我收到以下错误:
Invalid CFML construct found on line 28 at column 22.
ColdFusion was looking at the following text:
{
The CFML compiler was processing:
A script statement beginning with this.flash on line 28, column 9.
A cfscript tag beginning on line 12, column 2.因为我是第一次尝试,所以我不知道是什么导致了这个错误。有人能帮我理解这个错误吗?
发布于 2012-08-27 17:32:31
错误是因为CF8 (build 8,0,0,176276)不支持嵌套的内联结构。
根据其要求,ColdBox需要CF 8.0.1 (build 8,0,1,195765)或更高版本。
http://wiki.coldbox.org/wiki/Installation.cfm
https://stackoverflow.com/questions/12138168
复制相似问题