- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用CF8和Fusebox 5的站点。每当我需要向该站点添加新功能时,通常都必须向circuit.xml.cfm添加新的 fuse ,以用于 Controller ,模型或 View 或全部。要启用这些新功能/页面,请转到以下网址:
?fusebox.load=true&fusebox.parse=true&fusebox.password=password&fusebox.loadclean=true
Error - Parsed File or Directory not found.
Date/Time: Apr 25 2009 12:26:02
Type: fusebox.missingParsedFile
Message: Parsed File or Directory not found.
Detail:
Attempting to execute the parsed file 'login.logout.cfm' threw an error. This can occur if the parsed file does not exist in the parsed directory or if the parsed directory itself is missing.
Stack Trace:
coldfusion.runtime.CustomException: Parsed File or Directory not found.
at coldfusion.tagext.lang.ThrowTag.doStartTag(ThrowTag.java:124)
at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:2644)
at cffusebox52ecfm1214986498.runPage(C:\example.com\fb5core\fusebox5.cfm:216)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:192)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:366)
at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:2644)
at cfindex2ecfm584653367.runPage(C:\example.com\index.cfm:3)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:192)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:366)
at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:2644)
at cfApplication2ecfc1103573364$funcONREQUEST.runFunction(C:\example.com\Application.cfc:36)
at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:418)
at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:360)
at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:324)
at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:56)
at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:277)
at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:192)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:448)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:308)
at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:74)
at coldfusion.runtime.AppEventInvoker.onRequest(AppEventInvoker.java:243)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:269)
at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:175)
at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
at jrun.servlet.FilterChain.service(FilterChain.java:101)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:284)
at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
?fusebox.password=password&fusebox.load=true&fusebox.parse=true
<!-- controller/circuit.xml.cfm -->
<circuit access="public">
<fuseaction name="index">
<set name="request.title" value="Account overview" />
<do action="layout.header" />
<do action="mdashboard.index" />
<do action="vdashboard.index" />
<do action="layout.footer" />
</fuseaction>
<fuseaction name="profile">
<set name="request.title" value="Your Profile" />
<do action="layout.header" />
<!-- form submitted to the same page -->
<if condition="isDefined('attributes.submit')">
<true>
<do action="mdashboard.updateprofile" />
<do action="vdashboard.profile" />
</true>
<false>
<do action="mdashboard.profile" />
<do action="vdashboard.profile" />
</false>
</if>
<do action="layout.footer" />
</fuseaction>
</circuit>
<!-- model/circuit.xml.cfm -->
<circuit access="internal">
<fuseaction name="index">
<include template="sqlIndex" />
</fuseaction>
<fuseaction name="profile">
<include template="sqlProfile" />
</fuseaction>
<fuseaction name="updateprofile">
<include template="actUpdateProfile" />
</fuseaction>
</circuit>
<!-- view/circuit.xml.cfm -->
<circuit access="internal">
<fuseaction name="index">
<include template="dspIndex" />
</fuseaction>
<fuseaction name="profile">
<include template="dspProfile" />
</fuseaction>
</circuit>
<!-- controller/circuit.xml.cfm -->
<circuit access="public">
<fuseaction name="index">
<set name="request.title" value="Account overview" />
<do action="layout.header" />
<include template="ctrlIndex" />
<do action="layout.footer" />
</fuseaction>
<fuseaction name="profile">
<set name="request.title" value="Your Profile" />
<do action="layout.header" />
<include template="ctrlProfile" />
<do action="layout.footer" />
</fuseaction>
</circuit>
<!-- model/circuit.xml.cfm -->
<circuit access="internal">
</circuit>
<!-- view/circuit.xml.cfm -->
<circuit access="internal">
</circuit>
<!-- controller/ctrlProfile.cfm -->
<cfif isDefined("attributes.submit")>
<cfinclude template="../model/actUpdateProfile.cfm">
</cfif>
<cfinclude template="../model/sqlPaymentOptions.cfm">
<cfinclude template="../view/dspPaymentOptions.cfm">
最佳答案
注意:新的 fuse 不需要重新加载 fuse -仅新的 fuse 需要一个。
我不能完全确定您遇到的错误是否是我认为的错误,但是无论如何,以下做法都是很好的做法...
进行更改并需要重新加载 fusebox 时,您应该做的是:
fusebox.parseall=true
和fusebox.loadclean=true
在此区域生成解析的文件fusebox.load=true
-别的(密码除外)。 关于coldfusion - 重新加载Fusebox应用而又不出现 "parsed file or directory not found"错误的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/789418/
有谁知道是否可以在冷融合模板中调用融合 Action ? 最佳答案 (您尚未指定哪个 Fusebox 版本;此答案适用于 Fusebox 5.x) 您的标题和问题问的是两件不同的事情 - fuse 和
好老Fusebox是我的第一个框架,我仍然非常喜欢它。从 PHP 版本开始,目前使用最新的 CFML 版本。 但是时间流逝,我在想:也许我应该切换到另一个框架?好吧,我不想在这里开始圣战。我只想知道继
我正在使用 fuse-box对于 React Web 项目,突然间它正在监视并且热重载(hmr)不再工作了!注意这一点: ---------------------------------------
以前(和本地)我已将 fusebox5 目录放在 web 根目录中,然后树中任何位置的应用程序都可以访问它。我以前也使用过 Application.cfm 而不是 .cfc。 在这种环境中,我无法访问
我想知道是否有人提出了一种在 Fusebox 中生成面包屑路径的简洁方法。具体来说,有没有一种方法可以跟踪“你在哪里”并以某种方式为你生成面包屑?因此,例如,如果您正在执行 /index.cfm?f
如今,无论我做什么,我的应用程序都无法识别我对上传的文件所做的更改。我什至在页面顶部放了一个 cfabort,它只是忽略了它。现在,这是一个生产服务器,所以我通常需要为 fusebox 框架做一些事情
我有一个学校作业,我需要在我的 ColdFusion 网站上使用 Fusebox 框架。但是为什么我需要使用它?有什么好处? 最佳答案 Fusebox 是一个 Model-View-Controlle
我正在尝试将 NodeJS 应用程序转换为 .exe。为此,我尝试使用 pkg,但它给出了半 Node 模块的错误。所以我正在尝试下一步。但是当我执行 nexe index.js 如果出现此错误: n
我有一个大型 Adobe ColdFusion 9 站点,该站点使用无 XML 版本的 Fusebox 5.5。该站点当前不在模型中使用 CFC。选择范围已缩小为 CFWheels、Coldbox
我是一名优秀的程序员,十分优秀!