Questions tagged [fusebox]

Fusebox is a coding methodology for application development centered around the use of switch statements and naming conventions to organize code.

Implementations include PHP Fusebox and Coldfusion Fusebox.

57 questions
2
votes
1 answer

How to package for Lambda/Google Cloud Functions without including all unnecessary dependencies

One thing I don't like about Node is that as soon as you add one require("whatever") you end up with 1000's of transitive dependencies which call require on the off chance that the code might be needed. var whatever = require('whatever'); if…
Nicholas Albion
  • 3,096
  • 7
  • 33
  • 56
2
votes
3 answers

development vs production fusebox.xml

I'm working on a Fusebox application using Coldfusion, and there is a fusebox.xml file which I'd like to be slightly different on the production server than it is on the development server. Since it appears that this file is just a xml file (ie: I…
erikvold
  • 15,988
  • 11
  • 54
  • 98
2
votes
0 answers

How to intercept and replace fuseaction content in Application.cfc?

I use Coldfusion 9, fusebox 3 and an Application.cfc in my web application. I would like to control, intercept and eventually change the value of fuseaction in the onRequestStart section of the Application.cfc I'm able to check the content of the…
Boody
  • 35
  • 1
  • 6
2
votes
2 answers

Migrating from fusebox ColdFusion to PHP

I am currently working on converting a ColdFusion website, using Fusebox framework, to PHP. The site contains like 20,000 lines of ColdFusion code. My dilemma is, should I switch to Fusebox-PHP (as it will be easier to migrate the project layout) or…
Ashish Gaurav
  • 303
  • 1
  • 7
1
vote
1 answer

Could not find the ColdFusion Component or Interface fuseboxWriter

I'm running ColdFusion 8.1 with FuseBox 5. I originally configured my dynamic virtual hosting in Apache so that my domains pointed to: C:\websites\www.example.com C:\websites\dev.example.com C:\websites\legacy.example.com In case we add more…
Mathachew
  • 2,044
  • 2
  • 18
  • 31
1
vote
1 answer

fusebox 5.5 noxml folder name problems

I am having trouble with fusebox 5.5 noxml and circuits... I have a structure that looks like this. controller app.cfc model main act_comm_main.cfm monkey act_something_else.cfm view main dsp_comm_main.cfm monkey …
Frank Tudor
  • 4,226
  • 2
  • 23
  • 43
1
vote
1 answer

Localhost pointing to different codeFolder locations

WINDOWS XP PROFESSIONAL/coldfusion/Dreamweaver/Fusebox-3 I have the same CF-8 code in two places * folder A:- c:\Coldfusion8\wwwroot\BootsmanCode\code * folder B:- c:\wwwroot\BootsmanCode\code Local:-…
vas
  • 2,078
  • 9
  • 39
  • 60
1
vote
2 answers

How do I create Search Engine Safe URLs in Fusebox 5.1 noxml?

How do I create Search Engine Safe URLs in Fusebox 5.1 noxml? For instance, I want this: http://www.site.com/index.cfm/app.welcome/ Instead of this: http://www.site.com/index.cfm?fuseaction=app.welcome Fusebox 5.1 is suppose to be able to do this. …
Brian Bolton
  • 3,633
  • 8
  • 35
  • 43
1
vote
1 answer

Fusebox not resolving variables

Ok I'm kind of inheriting a Fusebox applications... It runs on the live server and it runs on the other developers local sys - it DOES NOT resolve variables on MY local system... I'm set up on Apache - latest release, and CF 9 developer, on a…
j-p
  • 3,698
  • 9
  • 50
  • 93
1
vote
2 answers

Using Fusebox 5.5 permissions attribute checking within the .cfm of a fuse

I have a standard user/role setup which returns the current user's roles in a list. I then use the permissions="" attribute and the preFuseaction phase to check whether this user is authorised to access this fuseaction. This allows some blocks of…
Alistair Knock
  • 1,806
  • 2
  • 16
  • 25
1
vote
0 answers

Fusebox doesn't recognize property setting for sourceRoot

I've inherited some javaScript/typeScript code I cant much change. using: fuse v0.4.0 fusebox v4.0.0, typescript 4.1.3 I'm generating a bundle & sourceMap (bundle.js, bundle.js.map) this sourceMap works, BUT ONLY if I do a text replace on the…
1
vote
1 answer

Fusebox not parsing xml files

Currently, in the application.cfc, I extend the Fusebox 5.5 Framework. Then in the OnRequestStart method below, I set the fusebox mode depending on a certain condition. The problem is that sometimes, the fusebox xml files do not reparse no matter…
Paolo Broccardo
  • 1,942
  • 6
  • 34
  • 51
1
vote
1 answer

Form Fields not available in Internet Explorer 11 and Edge

A login form is submitted and when I try and dump the values the form structure is empty in IE but not FF or Chrome. This is in a DEV environment using HTTPS and a corporate self signed certificate. I don't really think this is Fusebox related but…
Smoketx
  • 93
  • 11
1
vote
1 answer

fusebox dev server with /api route

I'm trying to configure fusebox so that it serves my app in root but also an API (for testing only) with /api. With webpack I managed to get this with the following devServer: { setup: function (app) { app.use('/api',…
David
  • 3,364
  • 10
  • 41
  • 84
1
vote
1 answer

A timeout occur while attempting to local fusebox

I have a fusebox application setup on coldfusion 9 and it is in production mode. When application got started, it is giving me following error. A timeout occur while attempting to local fusebox. I have increased the timeout but that not help.…
Abdul Rauf
  • 763
  • 2
  • 8
  • 28