Search the web
Sign In
New User? Sign Up
fusebox5
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
App method - works in display template, not in model cfc.   Topic List   < Prev Topic  |  Next Topic >
Summarize Messages Sort by Date  
#4276 From: "the_one_true_dave_anderson" <dave@...>
Date: Mon Jun 22, 2009 9:15 pm
Subject: App method - works in display template, not in model cfc.
the_one_true...
Offline Offline
Send Email Send Email
 
This is an elusive problem for which I've already instituted a workaround, so
it's not terribly urgent, but quite vexing nevertheless...

I have a FB5.5 app (with an xml-less config), and there's a function in my
App.cfc called isProduction() that returns a boolean value. I had been setting
an application.mode variable (to 'prod' or 'dev') based on the value returned by
this function, but recently discovered (!) that I could call isProduction() from
pretty much anywhere. However, after recently deploying updates to a testing
environment, I found that the function would not execute in one of my Model
cfc's -- though worked fine in display templates. I did/do not have this
problem on my local dev environment.

Any ideas why the Application.cfc's function would work in a display template
but not in an implicitly-loaded FB Model cfc?

Thanks!




#4277 From: Tim Mixell <tim.mixell@...>
Date: Mon Jun 22, 2009 9:25 pm
Subject: Re: App method - works in display template, not in model cfc.
tim.mixell
Offline Offline
Send Email Send Email
 
I think it pertains to scoping/visibility of "variables.*" from within
CFCs... I came across that one as well (except I was creating the
method in fusebox.init.cfm). You can assign the method to the request
scope and you should be able to access your App.cfc method from your
model:

<cffunction name="foo">
...
</cffunction>
<cfset request.foo = foo />

My guess is this probably resembles your workaround :]

On Mon, Jun 22, 2009 at 5:15 PM,
the_one_true_dave_anderson<dave@...> wrote:
>
>
> This is an elusive problem for which I've already instituted a workaround,
> so it's not terribly urgent, but quite vexing nevertheless...
>
> I have a FB5.5 app (with an xml-less config), and there's a function in my
> App.cfc called isProduction() that returns a boolean value. I had been
> setting an application.mode variable (to 'prod' or 'dev') based on the value
> returned by this function, but recently discovered (!) that I could call
> isProduction() from pretty much anywhere. However, after recently deploying
> updates to a testing environment, I found that the function would not
> execute in one of my Model cfc's -- though worked fine in display templates.
> I did/do not have this problem on my local dev environment.
>
> Any ideas why the Application.cfc's function would work in a display
> template but not in an implicitly-loaded FB Model cfc?
>
> Thanks!
>
>



#4278 From: Sean Corfield <seancorfield@...>
Date: Mon Jun 22, 2009 9:47 pm
Subject: Re: App method - works in display template, not in model cfc.
seancorfield
Offline Offline
Send Email Send Email
 
On Mon, Jun 22, 2009 at 2:15 PM,
the_one_true_dave_anderson<dave@...> wrote:
> I have a FB5.5 app (with an xml-less config), and there's a function in my
> App.cfc called isProduction() that returns a boolean value. I had been
> setting an application.mode variable (to 'prod' or 'dev') based on the value
> returned by this function, but recently discovered (!) that I could call
> isProduction() from pretty much anywhere. However, after recently deploying
> updates to a testing environment, I found that the function would not
> execute in one of my Model cfc's -- though worked fine in display templates.
> I did/do not have this problem on my local dev environment.

I'm surprised you can call Application.isProduction() from a model CFC
in your local dev environment.

Yes, the variables scope of Application.cfc is available in your
views. It's also available as myFusebox.variables() which you could
use in the controllers (or model circuit if you're using a Fusebox
circuit for the model rather than standalone CFCs).

That said, I really wouldn't recommend this sort of thing. Relying on
Application.cfc methods being available "everywhere" is not very well
structured, to say the least. Application.cfc is meant to handle the
lifecycle of the application: startup/shutdown for application /
session / request. It's not meant to be a 'kitchen sink' for utility
methods.

What I typically do is have some sort of configuration CFC that
encapsulates all the differences between dev / qa / prod / etc as much
as possible and then make that available to other components as needed
(storing it in myFusebox.getApplicationData() for use in views and
controllers and then initializing the model with a reference to that
config CFC as appropriate).
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood



#4279 From: "the_one_true_dave_anderson" <dave@...>
Date: Fri Jun 26, 2009 2:00 pm
Subject: Re: App method - works in display template, not in model cfc.
the_one_true...
Offline Offline
Send Email Send Email
 
--- In fusebox5@yahoogroups.com, Sean Corfield <seancorfield@...> wrote:
>
> On Mon, Jun 22, 2009 at 2:15 PM,
> I'm surprised you can call Application.isProduction() from a model CFC
> in your local dev environment.

You should be! I was mistaken! I thought it worked in my local dev env because
I hadn't encountered the error, but it was there.

>
> Yes, the variables scope of Application.cfc is available in your
> views. It's also available as myFusebox.variables() which you could
> use in the controllers (or model circuit if you're using a Fusebox
> circuit for the model rather than standalone CFCs).
>
> That said, I really wouldn't recommend this sort of thing. Relying on
> Application.cfc methods being available "everywhere" is not very well
> structured, to say the least. Application.cfc is meant to handle the
> lifecycle of the application: startup/shutdown for application /
> session / request. It's not meant to be a 'kitchen sink' for utility
> methods.

I absolutely agree. I was just playing around, and surprised to see that I
could call an app method in a view (without even specifying the scope -- just
plain ol' "isProduction()" worked), and wondered why it didn't work in the
controller cfcs. Makes perfect sense now that I know I was mistaken about it
working in my local dev env.

BTW - Fusebox5.5 is the best! I've used FB since v2, and quit using it after v4
for a while. With the excellent flexibility of 5.5 and the option to avoid xml
configs altogether, I'm very grateful for all the work you put into it.

Cheers,
Dave

>
> What I typically do is have some sort of configuration CFC that
> encapsulates all the differences between dev / qa / prod / etc as much
> as possible and then make that available to other components as needed
> (storing it in myFusebox.getApplicationData() for use in views and
> controllers and then initializing the model with a reference to that
> config CFC as appropriate).
> --
> Sean A Corfield -- (904) 302-SEAN
> Railo Technologies US -- http://getrailo.com/
> An Architect's View -- http://corfield.org/
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>





#4284 From: Sean Corfield <seancorfield@...>
Date: Sun Jun 28, 2009 4:36 am
Subject: Re: Re: App method - works in display template, not in model cfc.
seancorfield
Offline Offline
Send Email Send Email
 
On Fri, Jun 26, 2009 at 7:00 AM,
the_one_true_dave_anderson<dave@...> wrote:
> You should be! I was mistaken! I thought it worked in my local dev env
> because I hadn't encountered the error, but it was there.

OK, you had me worried for a bit there! :)

> BTW - Fusebox5.5 is the best! I've used FB since v2, and quit using it after
> v4 for a while. With the excellent flexibility of 5.5 and the option to
> avoid xml configs altogether, I'm very grateful for all the work you put
> into it.

Thank you!

It's always good to hear when an open source project you've invested a
lot of time and energy into helps someone get their work done more
effectively!
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood



#4283 From: "Eva" <bluemoonbow@...>
Date: Tue Jun 23, 2009 2:10 am
Subject: new to fusebox
abelledenuit
Offline Offline
Send Email Send Email
 
Is there any place where I can sign up for a class on fusebox....kind of walk through an application from start to finish?  I am reading the Fusebox: Developing Coldfusion Application  but it would be nice to discuss it as I go along.
Eva

#4285 From: Sean Corfield <seancorfield@...>
Date: Sun Jun 28, 2009 4:38 am
Subject: Re: new to fusebox
seancorfield
Offline Offline
Send Email Send Email
 
On Mon, Jun 22, 2009 at 7:10 PM, Eva<bluemoonbow@...> wrote:
> Is there any place where I can sign up for a class on fusebox....kind of
> walk through an application from start to finish?  I am reading the Fusebox:
> Developing Coldfusion Application  but it would be nice to discuss it as I
> go along.

I'd be interested to hear what people recommend on Fusebox training.

I've heard of some very bad experiences with TeraTech Fusebox courses
so this is a good discussion to have here!
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood



#4286 From: "Eva" <bluemoonbow@...>
Date: Fri Jul 3, 2009 12:36 am
Subject: RE: new to fusebox
abelledenuit
Offline Offline
Send Email Send Email
 
So I take it from the silence that there isn't any place to learn Fusebox.  Everyone for themselves kind of deal, not sure why it is so popular then.   
I like the idea but it would be nice to have some place to learn it....
Eva


From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Sean Corfield
Sent: Sunday, June 28, 2009 12:38 AM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

On Mon, Jun 22, 2009 at 7:10 PM, Eva<bluemoonbow@earthlink.net> wrote:
> Is there any place where I can sign up for a class on fusebox....kind of
> walk through an application from start to finish?  I am reading the Fusebox:
> Developing Coldfusion Application  but it would be nice to discuss it as I
> go along.

I'd be interested to hear what people recommend on Fusebox training.

I've heard of some very bad experiences with TeraTech Fusebox courses
so this is a good discussion to have here!
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood


#4287 From: "Seth Johnson" <sjohnson@...>
Date: Fri Jul 3, 2009 3:47 am
Subject: RE: new to fusebox
cfx_user
Offline Offline
Send Email Send Email
 

I'm not familiar with formal training venues, with that said - I think you found a good resource here.  This group, the documentation, and the forums have been my main sources of learning.  If you have a question, post it and we'll try to help!


Seth

 

From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Eva
Sent: Thursday, July 02, 2009 8:37 PM
To: fusebox5@yahoogroups.com
Subject: RE: [fusebox5] new to fusebox

 




So I take it from the silence that there isn't any place to learn Fusebox.  Everyone for themselves kind of deal, not sure why it is so popular then.   

I like the idea but it would be nice to have some place to learn it....

Eva

 


From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Sean Corfield
Sent: Sunday, June 28, 2009 12:38 AM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

On Mon, Jun 22, 2009 at 7:10 PM, Eva<bluemoonbow@...> wrote:
> Is there any place where I can sign up for a class on fusebox....kind of
> walk through an application from start to finish?  I am reading the Fusebox:
> Developing Coldfusion Application  but it would be nice to discuss it as I
> go along.

I'd be interested to hear what people recommend on Fusebox training.

I've heard of some very bad experiences with TeraTech Fusebox courses
so this is a good discussion to have here!
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood


#4288 From: Kevin Pepperman <chornobyl@...>
Date: Fri Jul 3, 2009 2:56 am
Subject: Re: new to fusebox
lbretail22
Offline Offline
Send Email Send Email
 
Fusebox is a simple, easy to use framework that works very good. Thats why it is so popular.

The nuts and bolts are rather easy to understand. You shouldn't need a class to be able to use it.

Maybe that is why you are getting no response here. Most people know a couple hours with whats available on the fusebox site, forums and groups should give you plenty of information to get started. 

Most general questions or beginner "how do i..?" questions have been gone over many times.

Just some basic understanding of CFML, and if you use the XML flavor-- some understanding of the XML syntax is needed to begin.

It is not a CMS or an 'out of box solution', so it supports almost any coding style (good or bad).

If you download the few sample apps or the skeleton frameworks you will discover that it is really a simple process. Fusebox is very good at staying out of the way.

There are conventions that are community standards.. But you do no need to use any of these conventions to use Fusebox.


Download the core files and  the skeleton app.. place it in your site root. Thats it. 

No setup, nothing special to run it. 

I would suggest the books that are available if you want to get into the more advanced stuff.




On Thu, Jul 2, 2009 at 8:36 PM, Eva <bluemoonbow@...> wrote:


So I take it from the silence that there isn't any place to learn Fusebox.  Everyone for themselves kind of deal, not sure why it is so popular then.   
I like the idea but it would be nice to have some place to learn it....
Eva


From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Sean Corfield
Sent: Sunday, June 28, 2009 12:38 AM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

On Mon, Jun 22, 2009 at 7:10 PM, Eva<bluemoonbow@...> wrote:
> Is there any place where I can sign up for a class on fusebox....kind of
> walk through an application from start to finish?  I am reading the Fusebox:
> Developing Coldfusion Application  but it would be nice to discuss it as I
> go along.

I'd be interested to hear what people recommend on Fusebox training.

I've heard of some very bad experiences with TeraTech Fusebox courses
so this is a good discussion to have here!
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood




--
-- if you've written a homegrown[*CFML] controller layer that rivals the sophistication and ease of use of the three major players (MG/MII/FB) - then share it or shut up. You code in a silo - that's great. Just stay in there and don't try to tell everyone how good it smells.
--Dave Ross

#4289 From: "Eva" <bluemoonbow@...>
Date: Fri Jul 3, 2009 4:31 pm
Subject: RE: new to fusebox/setup
abelledenuit
Offline Offline
Send Email Send Email
 
Aw but when you are looking for a job, the question always comes up did you take a class or how did you learn to use fusebox.  If you take a class then that assures them that you have learn the standards and are using the method as taught ...if you learned it on your own then you are using your own interpretation which may not be their interpretation.  Saying I learned something on my own never seems to get the same respect as having taken and passed a class on the topic. 
 
So the directory on the server I am putting this on is as follows:
C:\Inetpub\vhosts
in which are the seperate websites
A
B
C
D....etc.
in each of these the actual files are grouped in httpdocs
 
So if I am using scenario 5 where he has the files in temp/installscenarios/applicationroot s5/fbcore
 
that would translate to:
 
C:\Inetpub\applicationroot s5\fbcore
 
Or would it go in
 
C:\Inetpub\vhosts\applicationroot s5\fbcore
 
Or would it go further down?  I did not set up the server with vhost and httpdocs...that is the way the Plesk group set it up.  Do I need to call it "applicationroot s5"?
 
and then I put the index files and application.cfc into the separate websites as usual
C:\Inetpub\vhosts\asite\httpdocs\index.cfm
 
I am assuming that only the websites that I put fusebox code will call the fbcore all the other sites will be unaffected.
Eva
 


From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Kevin Pepperman
Sent: Thursday, July 02, 2009 10:57 PM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

Fusebox is a simple, easy to use framework that works very good. Thats why it is so popular.


The nuts and bolts are rather easy to understand. You shouldn't need a class to be able to use it.

Maybe that is why you are getting no response here. Most people know a couple hours with whats available on the fusebox site, forums and groups should give you plenty of information to get started. 

Most general questions or beginner "how do i..?" questions have been gone over many times.

Just some basic understanding of CFML, and if you use the XML flavor-- some understanding of the XML syntax is needed to begin.

It is not a CMS or an 'out of box solution', so it supports almost any coding style (good or bad).

If you download the few sample apps or the skeleton frameworks you will discover that it is really a simple process. Fusebox is very good at staying out of the way.

There are conventions that are community standards.. But you do no need to use any of these conventions to use Fusebox.


Download the core files and  the skeleton app.. place it in your site root. Thats it. 

No setup, nothing special to run it. 

I would suggest the books that are available if you want to get into the more advanced stuff.




On Thu, Jul 2, 2009 at 8:36 PM, Eva <bluemoonbow@earthlink.net> wrote:


So I take it from the silence that there isn't any place to learn Fusebox.  Everyone for themselves kind of deal, not sure why it is so popular then.   
I like the idea but it would be nice to have some place to learn it....
Eva


From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Sean Corfield
Sent: Sunday, June 28, 2009 12:38 AM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

On Mon, Jun 22, 2009 at 7:10 PM, Eva<bluemoonbow@earthlink.net> wrote:
> Is there any place where I can sign up for a class on fusebox....kind of
> walk through an application from start to finish?  I am reading the Fusebox:
> Developing Coldfusion Application  but it would be nice to discuss it as I
> go along.

I'd be interested to hear what people recommend on Fusebox training.

I've heard of some very bad experiences with TeraTech Fusebox courses
so this is a good discussion to have here!
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood




--
-- if you've written a homegrown[*CFML] controller layer that rivals the sophistication and ease of use of the three major players (MG/MII/FB) - then share it or shut up. You code in a silo - that's great. Just stay in there and don't try to tell everyone how good it smells.
--Dave Ross


#4290 From: Phillip Vector <vector@...>
Date: Fri Jul 3, 2009 4:43 pm
Subject: Re: new to fusebox/setup
lance_lake
Online Now Online Now
Send Email Send Email
 
On Fri, Jul 3, 2009 at 9:31 AM, Eva<bluemoonbow@...> wrote:
>
> Aw but when you are looking for a job, the question always comes up did you
> take a class or how did you learn to use fusebox.  If you take a class then
> that assures them that you have learn the standards and are using the method
> as taught ...if you learned it on your own then you are using your own
> interpretation which may not be their interpretation.  Saying I learned
> something on my own never seems to get the same respect as having taken and
> passed a class on the topic.

That may be true (the opposite for me actually), but what Kevin said
was correct. Fusebox is easy to learn with the documentation on the
site and sample apps.

Also, as I've seen several Fusebox sites over the years, all of them
have different standards. I don't think I've ever seen ANY sites that
follow the docs to the letter. :)

> ________________________________
> From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf
> Of Kevin Pepperman
> Sent: Thursday, July 02, 2009 10:57 PM
> To: fusebox5@yahoogroups.com
> Subject: Re: [fusebox5] new to fusebox
>
> Fusebox is a simple, easy to use framework that works very good. Thats why
> it is so popular.
>
> The nuts and bolts are rather easy to understand. You shouldn't need a class
> to be able to use it.
> Maybe that is why you are getting no response here. Most people know a
> couple hours with whats available on the fusebox site, forums and groups
> should give you plenty of information to get started.
> Most general questions or beginner "how do i..?" questions have been gone
> over many times.
> Just some basic understanding of CFML, and if you use the XML flavor-- some
> understanding of the XML syntax is needed to begin.
> It is not a CMS or an 'out of box solution', so it supports almost any
> coding style (good or bad).
> If you download the few sample apps or the skeleton frameworks you will
> discover that it is really a simple process. Fusebox is very good at staying
> out of the way.
> There are conventions that are community standards.. But you do no need to
> use any of these conventions to use Fusebox.
>
> Download the core files and  the skeleton app.. place it in your site root.
> Thats it.
> No setup, nothing special to run it.
> I would suggest the books that are available if you want to get into the
> more advanced stuff.
>
http://www.protonarts.com/index.cfm?fuseaction=Books.showBookDetails&ISBN=097526\
477X

>
http://protonarts.com/index.cfm?fuseaction=Books.showBookDetails&ISBN=0975264761
>
> On Thu, Jul 2, 2009 at 8:36 PM, Eva <bluemoonbow@...> wrote:
>>
>>
>> So I take it from the silence that there isn't any place to learn
>> Fusebox.  Everyone for themselves kind of deal, not sure why it is so
>> popular then.
>> I like the idea but it would be nice to have some place to learn it....
>> Eva
>> ________________________________
>> From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf
>> Of Sean Corfield
>> Sent: Sunday, June 28, 2009 12:38 AM
>> To: fusebox5@yahoogroups.com
>> Subject: Re: [fusebox5] new to fusebox
>>
>> On Mon, Jun 22, 2009 at 7:10 PM, Eva<bluemoonbow@...> wrote:
>> > Is there any place where I can sign up for a class on fusebox....kind of
>> > walk through an application from start to finish?  I am reading the
>> > Fusebox:
>> > Developing Coldfusion Application  but it would be nice to discuss it as
>> > I
>> > go along.
>>
>> I'd be interested to hear what people recommend on Fusebox training.
>>
>> I've heard of some very bad experiences with TeraTech Fusebox courses
>> so this is a good discussion to have here!
>> --
>> Sean A Corfield -- (904) 302-SEAN
>> Railo Technologies US -- http://getrailo.com/
>> An Architect's View -- http://corfield.org/
>>
>> "If you're not annoying somebody, you're not really alive."
>> -- Margaret Atwood
>
>
>
> --
> -- if you've written a homegrown[*CFML] controller layer that rivals the
> sophistication and ease of use of the three major players (MG/MII/FB) - then
> share it or shut up. You code in a silo - that's great. Just stay in there
> and don't try to tell everyone how good it smells.
> --Dave Ross
>
>
>



#4291 From: "Seth Johnson" <sjohnson@...>
Date: Fri Jul 3, 2009 4:52 pm
Subject: RE: new to fusebox/setup
cfx_user
Offline Offline
Send Email Send Email
 

You can place the core files anywhere you want and create a CF mapping to them.  Then call them from any app root.

 

Seth

 

From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Eva
Sent: Friday, July 03, 2009 12:31 PM
To: fusebox5@yahoogroups.com
Subject: RE: [fusebox5] new to fusebox/setup

 




Aw but when you are looking for a job, the question always comes up did you take a class or how did you learn to use fusebox.  If you take a class then that assures them that you have learn the standards and are using the method as taught ...if you learned it on your own then you are using your own interpretation which may not be their interpretation.  Saying I learned something on my own never seems to get the same respect as having taken and passed a class on the topic. 

 

So the directory on the server I am putting this on is as follows:

C:\Inetpub\vhosts

in which are the seperate websites

A

B

C

D....etc.

in each of these the actual files are grouped in httpdocs

 

So if I am using scenario 5 where he has the files in temp/installscenarios/applicationroot s5/fbcore

 

that would translate to:

 

C:\Inetpub\applicationroot s5\fbcore

 

Or would it go in

 

C:\Inetpub\vhosts\applicationroot s5\fbcore

 

Or would it go further down?  I did not set up the server with vhost and httpdocs...that is the way the Plesk group set it up.  Do I need to call it "applicationroot s5"?

 

and then I put the index files and application.cfc into the separate websites as usual

C:\Inetpub\vhosts\asite\httpdocs\index.cfm

 

I am assuming that only the websites that I put fusebox code will call the fbcore all the other sites will be unaffected.

Eva

 

 


From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Kevin Pepperman
Sent: Thursday, July 02, 2009 10:57 PM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

Fusebox is a simple, easy to use framework that works very good. Thats why it is so popular.

 

The nuts and bolts are rather easy to understand. You shouldn't need a class to be able to use it.

 

Maybe that is why you are getting no response here. Most people know a couple hours with whats available on the fusebox site, forums and groups should give you plenty of information to get started. 

 

Most general questions or beginner "how do i..?" questions have been gone over many times.

 

Just some basic understanding of CFML, and if you use the XML flavor-- some understanding of the XML syntax is needed to begin.

 

It is not a CMS or an 'out of box solution', so it supports almost any coding style (good or bad).

 

If you download the few sample apps or the skeleton frameworks you will discover that it is really a simple process. Fusebox is very good at staying out of the way.

 

There are conventions that are community standards.. But you do no need to use any of these conventions to use Fusebox.

 

 

Download the core files and  the skeleton app.. place it in your site root. Thats it. 

 

No setup, nothing special to run it. 

 

I would suggest the books that are available if you want to get into the more advanced stuff.

 

 

 

On Thu, Jul 2, 2009 at 8:36 PM, Eva <bluemoonbow@...> wrote:

 

So I take it from the silence that there isn't any place to learn Fusebox.  Everyone for themselves kind of deal, not sure why it is so popular then.   

I like the idea but it would be nice to have some place to learn it....

Eva

 


From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Sean Corfield
Sent: Sunday, June 28, 2009 12:38 AM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

On Mon, Jun 22, 2009 at 7:10 PM, Eva<bluemoonbow@...> wrote:
> Is there any place where I can sign up for a class on fusebox....kind of
> walk through an application from start to finish?  I am reading the Fusebox:
> Developing Coldfusion Application  but it would be nice to discuss it as I
> go along.

I'd be interested to hear what people recommend on Fusebox training.

I've heard of some very bad experiences with TeraTech Fusebox courses
so this is a good discussion to have here!
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood




--
-- if you've written a homegrown[*CFML] controller layer that rivals the sophistication and ease of use of the three major players (MG/MII/FB) - then share it or shut up. You code in a silo - that's great. Just stay in there and don't try to tell everyone how good it smells.
--Dave Ross


#4296 From: Nathan Strutz <strutz@...>
Date: Sat Jul 4, 2009 6:38 pm
Subject: Re: new to fusebox
nathan_strutz
Offline Offline
Send Email Send Email
 
Eva,

I wholeheartedly agree that it's hard to get into. In fact, most of the frameworks are. This has been a pretty awful block for a long time. This is what I was hoping to help with the fusebox xml cheat sheet (http://www.dopefly.com/projects/fuseboxxmlcheatsheet.cfm).

Of course that only documents part of the story, it doesn't give you what you really need.


I believe all frameworks need a 4-step introduction:

1) Overview for confused individuals
2) Setup instructions - what the different downloads are, how to start an app, getting to hello world
3) How to make something. A database-connected form, for example
4) How to debug an existing, complex application

This process should work for ORM frameworks as well as Dependency Injection frameworks and whatever else. Of course this is an introduction, and doesn't really dive deeply into the internals - that stuff is also needed, at least on some level. Oh, and cheat sheets. Gotta love the cheat sheets. For fusebox, I think we need a zero config conventions cheat sheet, like the no-xml cheat sheet. I'll think about doing it myself.


nathan strutz
[Blog and Family @ http://www.dopefly.com/]
[AZCFUG Manager @ http://www.azcfug.org/]
[Twitter @nathanstrutz]


On Thu, Jul 2, 2009 at 5:36 PM, Eva <bluemoonbow@...> wrote:


So I take it from the silence that there isn't any place to learn Fusebox.  Everyone for themselves kind of deal, not sure why it is so popular then.   
I like the idea but it would be nice to have some place to learn it....
Eva


From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Sean Corfield
Sent: Sunday, June 28, 2009 12:38 AM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

On Mon, Jun 22, 2009 at 7:10 PM, Eva<bluemoonbow@...> wrote:
> Is there any place where I can sign up for a class on fusebox....kind of
> walk through an application from start to finish?  I am reading the Fusebox:
> Developing Coldfusion Application  but it would be nice to discuss it as I
> go along.

I'd be interested to hear what people recommend on Fusebox training.

I've heard of some very bad experiences with TeraTech Fusebox courses
so this is a good discussion to have here!
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood





#4297 From: "Eva" <bluemoonbow@...>
Date: Sun Jul 5, 2009 3:35 am
Subject: RE: new to fusebox
abelledenuit
Offline Offline
Send Email Send Email
 
Yes, exactly.   I feel awkward asking about things here cause everyone seems to be doing this for a while....and the answers kind of imply that you should have know that...but the thing is I figure that was the case but I wasn't sure.    I hate to assume things and then something doesn't work and the reason it doesn't work is because your assumptions was wrong...lol  That is why I was hoping there would be a class where you can go through everything and ask questions without feeling out of place.
Eva


From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Nathan Strutz
Sent: Saturday, July 04, 2009 2:38 PM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

Eva,

I wholeheartedly agree that it's hard to get into. In fact, most of the frameworks are. This has been a pretty awful block for a long time. This is what I was hoping to help with the fusebox xml cheat sheet (http://www.dopefly.com/projects/fuseboxxmlcheatsheet.cfm).

Of course that only documents part of the story, it doesn't give you what you really need.


I believe all frameworks need a 4-step introduction:

1) Overview for confused individuals
2) Setup instructions - what the different downloads are, how to start an app, getting to hello world
3) How to make something. A database-connected form, for example
4) How to debug an existing, complex application

This process should work for ORM frameworks as well as Dependency Injection frameworks and whatever else. Of course this is an introduction, and doesn't really dive deeply into the internals - that stuff is also needed, at least on some level. Oh, and cheat sheets. Gotta love the cheat sheets. For fusebox, I think we need a zero config conventions cheat sheet, like the no-xml cheat sheet. I'll think about doing it myself.


nathan strutz
[Blog and Family @ http://www.dopefly.com/]
[AZCFUG Manager @ http://www.azcfug.org/]
[Twitter @nathanstrutz]


On Thu, Jul 2, 2009 at 5:36 PM, Eva <bluemoonbow@earthlink.net> wrote:


So I take it from the silence that there isn't any place to learn Fusebox.  Everyone for themselves kind of deal, not sure why it is so popular then.   
I like the idea but it would be nice to have some place to learn it....
Eva


From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Sean Corfield
Sent: Sunday, June 28, 2009 12:38 AM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

On Mon, Jun 22, 2009 at 7:10 PM, Eva<bluemoonbow@earthlink.net> wrote:
> Is there any place where I can sign up for a class on fusebox....kind of
> walk through an application from start to finish?  I am reading the Fusebox:
> Developing Coldfusion Application  but it would be nice to discuss it as I
> go along.

I'd be interested to hear what people recommend on Fusebox training.

I've heard of some very bad experiences with TeraTech Fusebox courses
so this is a good discussion to have here!
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood





#4298 From: Barney Boisvert <bboisvert@...>
Date: Sun Jul 5, 2009 5:33 am
Subject: Re: new to fusebox
barneyboisvert
Offline Offline
Send Email Send Email
 
Don't hesitate to ask questions.  You're correct that a lot of questions on this list are about in-depth, nitty-gritty stuff, but don't let that deter you.  Every one of us started with zero knowledge, and I'd wager relatively few took formal instruction.  So everyone was in your shoes at some point, and the majority of us would be happy to assist with whatever sort of guidance you need about Fusebox.

Like any technical community, there are certain best practices for asking questions.  See if Google can help.  Provide complete info (particularly for "why doesn't X work" type questions).  Take the time to think through what you're asking and phrase it clearly and concisely.  Etcetera.

Follow those and you'll almost always get responses, but do give it at least a day.  Often answers will show up in a few minutes, but no one I know is paid to answer mailing list questions, so pretty much everything else is higher priority.  Which isn't to say it won't happen, just that it might not happen immediately.  

cheers,
barneyb

--

On Jul 4, 2009, at 8:35 PM, "Eva" <bluemoonbow@...> wrote:

Yes, exactly.   I feel awkward asking about things here cause everyone seems to be doing this for a while....and the answers kind of imply that you should have know that...but the thing is I figure that was the case but I wasn't sure.    I hate to assume things and then something doesn't work and the reason it doesn't work is because your assumptions was wrong...lol  That is why I was hoping there would be a class where you can go through everything and ask questions without feeling out of place.
Eva


#4299 From: Mike Ritchie <starkraving2002@...>
Date: Sun Jul 5, 2009 8:15 am
Subject: Re: new to fusebox
starkraving2002
Online Now Online Now
Send Email Send Email
 
Expanding on what Barney says, it is possible to "help yourself" as well
as waiting for answers from other, more informed users. I highly, highly
recommend Jeff Peters' books on Fusebox. They take the approach that you
don't just want to know how to use the framework, you also want to know
how the framework "works". It's the difference between an owner's manual
in the glove box of your car, versus the books with all the exploded
diagrams that the mechanics have. But somehow even with the vast amounts
of information contained in the books, it's imparted in a manner that
builds you up into it as a progression through the book.

Mike
www.fusebuilder.net


Barney Boisvert wrote:
>
>
> Don't hesitate to ask questions. You're correct that a lot of
> questions on this list are about in-depth, nitty-gritty stuff, but
> don't let that deter you. Every one of us started with zero
> knowledge, and I'd wager relatively few took formal instruction. So
> everyone was in your shoes at some point, and the majority of us would
> be happy to assist with whatever sort of guidance you need about Fusebox.
>
> Like any technical community, there are certain best practices for
> asking questions. See if Google can help. Provide complete info
> (particularly for "why doesn't X work" type questions). Take the time
> to think through what you're asking and phrase it clearly and
> concisely. Etcetera.
>
> Follow those and you'll almost always get responses, but do give it at
> least a day. Often answers will show up in a few minutes, but no one
> I know is paid to answer mailing list questions, so pretty much
> everything else is higher priority. Which isn't to say it won't
> happen, just that it might not happen immediately.
>
> cheers,
> barneyb
>
> --
> Barney Boisvert
> bboisvert@... <mailto:bboisvert@...>
> http://www.barneyb.com/ <http://www.barneyb.com/>
>
> On Jul 4, 2009, at 8:35 PM, "Eva" <bluemoonbow@...
> <mailto:bluemoonbow@...>> wrote:
>
>> Yes, exactly. I feel awkward asking about things here cause
>> everyone seems to be doing this for a while....and the answers kind
>> of imply that you should have know that...but the thing is I figure
>> that was the case but I wasn't sure. I hate to assume things and
>> then something doesn't work and the reason it doesn't work is because
>> your assumptions was wrong...lol That is why I was hoping there
>> would be a class where you can go through everything and ask
>> questions without feeling out of place.
>> Eva
>>
>




#4301 From: "Bellas, Adam" <abellas@...>
Date: Tue Jul 7, 2009 1:05 pm
Subject: RE: new to fusebox
vurcease
Offline Offline
Send Email Send Email
 

I second Mike – get Jeff Peter’s books.  I pretty much make that required reading for anyone on my team who is struggling with Fusebox.

 

 

Adam Bellas | Sr. Application Developer / Team Leader | Information and Media Technology | Full Sail University
T 407.679.0100 x8261


3300
University Boulevard | Winter Park, FL 32792

 

 

 

 

From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Mike Ritchie
Sent: Sunday, July 05, 2009 4:15 AM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

 




Expanding on what Barney says, it is possible to "help yourself" as well
as waiting for answers from other, more informed users. I highly, highly
recommend Jeff Peters' books on Fusebox. They take the approach that you
don't just want to know how to use the framework, you also want to know
how the framework "works". It's the difference between an owner's manual
in the glove box of your car, versus the books with all the exploded
diagrams that the mechanics have. But somehow even with the vast amounts
of information contained in the books, it's imparted in a manner that
builds you up into it as a progression through the book.

Mike
www.fusebuilder.net


#4302 From: Jeffrey Roberson <jeff@...>
Date: Tue Jul 7, 2009 3:36 pm
Subject: Re: new to fusebox
hippiex
Offline Offline
Send Email Send Email
 
I agree Jeff's books are extremely helpful.

On Jul 7, 2009, at 6:05 AM, Bellas, Adam wrote:




I second Mike – get Jeff Peter’s books.  I pretty much make that required reading for anyone on my team who is struggling with Fusebox.

 

 

Adam Bellas | Sr. Application Developer / Team Leader | Information and Media Technology | Full Sail University
T 407.679.0100 x8261


3300 
University Boulevard | Winter Park, FL 32792

 

 

 

 

From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Mike Ritchie
Sent: Sunday, July 05, 2009 4:15 AM
To: fusebox5@yahoogroups.com
Subject: Re: [fusebox5] new to fusebox

 




Expanding on what Barney says, it is possible to "help yourself" as well 
as waiting for answers from other, more informed users. I highly, highly 
recommend Jeff Peters' books on Fusebox. They take the approach that you 
don't just want to know how to use the framework, you also want to know 
how the framework "works". It's the difference between an owner's manual 
in the glove box of your car, versus the books with all the exploded 
diagrams that the mechanics have. But somehow even with the vast amounts 
of information contained in the books, it's imparted in a manner that 
builds you up into it as a progression through the book.

Mike
www.fusebuilder.net




#4300 From: Dan LeGate <dan@...>
Date: Fri Jul 3, 2009 3:32 am
Subject: Re: new to fusebox
dlegate
Offline Offline
Send Email Send Email
 
I had this same question as I was recently getting ready to develop my
first FB5 app.

If you have no budget (pretty common these days) there really isn't much
out there, and until you try to create an app yourself, you really can't
grasp it until you see pieces of it in action.

I downloaded as many "sample" apps as I could, avoiding CFC versions
since I'm pretty lost in the CFC world still.

Using Jeff Peters book, I followed it pretty much to the letter (too
much so, it turns out) and I was able to kludge my way through it.

I now have a full app written in FB5 and I now feel pretty comfortable
with it... the xml, non-CFC version, that is.

I think the biggest hurdle for me (after the FLiP part), was
understanding how the xml files and XFAs worked.

Once I got those, it was pretty much just trying things and seeing how
they worked.

Also, I tried building a small piece of my app first using FB5 and that
helped me kind of "see" what it was all about.

I also think the Fusebox Project Wiki
(http://wiki.fuseboxframework.org/display/fb/Home) is very helpful.

One problem I had was knowing where to post questions. There's the
fusebox forums, the Yahoo Group, and various user group ListServes, and
I had varying degrees of success getting my questions answered,
depending on where I posted and who was "watching".

Hope this helps, at least to some degree.

Dan

Eva wrote:
>
>
> So I take it from the silence that there isn't any place to learn
> Fusebox. Everyone for themselves kind of deal, not sure why it is so
> popular then.
> I like the idea but it would be nice to have some place to learn it....
> Eva
>
> ------------------------------------------------------------------------
> *From:* fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] *On
> Behalf Of *Sean Corfield
> *Sent:* Sunday, June 28, 2009 12:38 AM
> *To:* fusebox5@yahoogroups.com
> *Subject:* Re: [fusebox5] new to fusebox
>
> On Mon, Jun 22, 2009 at 7:10 PM, Eva<bluemoonbow@...
> <mailto:bluemoonbow%40earthlink.net>> wrote:
> > Is there any place where I can sign up for a class on fusebox....kind of
> > walk through an application from start to finish? I am reading the
> Fusebox:
> > Developing Coldfusion Application but it would be nice to discuss
> it as I
> > go along.
>
> I'd be interested to hear what people recommend on Fusebox training.
>
> I've heard of some very bad experiences with TeraTech Fusebox courses
> so this is a good discussion to have here!
> --
> Sean A Corfield -- (904) 302-SEAN
> Railo Technologies US -- http://getrailo.com/ <http://getrailo.com/>
> An Architect's View -- http://corfield.org/ <http://corfield.org/>
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
>



 
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help