In a fusebox application is \fusebox\application.c...
# cfml-beginners
m
In a fusebox application is \fusebox\application.cfm the first filer that is ever called when a request hits the server?
a
It'll be
index.cfm
in yer webroot, probably. And then the
Application.cfm
(note it's
Application.cfm
, not
application.cfm
) adjacent to, or upstream from that. Whichever
Application.cfm
is found & loaded will include
fusebox/Application.cfm
m
AWESOME! Thanks @Adam Cameron šŸ™
šŸ‘ 1
a
Actually the
index.cfm
will run after the
Application.cfm
code.
m
yeah thats right im seeeing that šŸ™‚
a
So: •
index.cfm
will determine where to start looking for
Application.cfm
•
Application.cfm
in that dir, or the first ancestor dir that one is found it will execute first. And any code it calls • then
index.cfm
will run.
m
magic! thanks šŸ™‚
šŸ‘ 1
a
Good luck sorting out whatever it is you are trying to sort out šŸ˜‰
m
I'm gunna need it thanks šŸ˜‚