Fusebox Core Files

The Fusebox core files are the files needed to actually implement Fusebox. The core files can live within your webroot (local or via CF Mapping) in a folder called fusebox5. It is recommended that you place the corefiles outside of your webroot, accessed via a Coldfusion Mapping (/fusebox5/). This also allows for multiple sites to access one set of Fusebox core files (see multiple applications).

Core files are executed within your index.cfm as follows:

<!--- include the core file runtime --->
<cfinclude template="/fusebox5/fusebox5.cfm" />

Fusebox 5 Core Files

FilenameDescription

  • fuseboxAction.cfc
  • fusebox.Application.cfc
  • fusebox.Circuit.cfc
  • fusebox.Classdefinition.cfc
  • fusebox.Dofuseaction.cfc
  • fusebox.Factory.cfc
  • fusebox.Lexiconcompiler.cfc
  • fusebox.Plugin.cfc
  • fusebox.Verb.cfc
  • myFusebox.cfc
Fusebox Framework CFC's; called by fusebox5.cfm

  • argument.cfm
  • false.cfm
  • if.cfm
  • include.cfm
  • instantiate.cfm
  • invoke.cfm
  • loop.cfm
  • parameter.cfm
  • relocate.cfm
  • set.cfm
  • true.cfm
  • xfa.cfm
Fusebox verb files; located in /verbs directory. These files govern how CFML is written to a parsed file for each Fusebox verb.

NOTE: Core files are not modified, nor are they apart of your working websites accessed code files.

For more information, see Inside the Framework

Installing Fusebox Framework

For more information on installing the Fusebox Framework, click here

Download Fusebox Core Files

For a complete archive of Fusebox Core File downloads, click here. These files have been archived from previous zip file downloads of the Fusebox core files made available from Fusebox.org.

Configuring your Fusebox Application

For more information on configuration and setting up your Fusebox application, see fusebox.xml

External Links