Did you remember to copy over any custom tags (primarily FormUrl2Attributes)?
If not, then you've got URL.FuseAction and not Attributes.Fuseaction...so it'd never 
run the case code for "EmailAll".

Tough moving from 1 machine to another...Fusebox or not.
-- Loretta

"[ a l l e n g ]" wrote:

> I'm at a loss as to what else to check for with the problem.  The problem
> seemed to randomly appear out of no where yesterday.  I have a very simple
> Fusebox app that allows a user to maintain a database for emailing
> customers.  I literally copied the files from client A to client B and
> changed the headers and a couple changes to reflect a couple extra database
> fields.  THAT IS ALL.  I never changed the Index file (code below) nor any
> of the links.
>
> At one point I tested the app and everything was working normally.  Then
> when I looked at it again yesterday, the links were not working.  The catch
> is that I can bring up the appropriate pages just fine by typing in the
> "direct" URL (e.g.
> http://dev.usinternet.com/inteletravel/admin/act_EmailAll.cfm ) but it won't
> work using the "fusebox" way
>
> http://dev.usinternet.com/inteletravel/admin/Index.cfm?FuseAction=EmailAll )
> .  It appears to no longer recognize the values for Attributes.FuseAction
> and end up going to the CFCASEDEFAULT.
>
> I would appreciate any ideas on what could be happening here.  I'm at a
> complete loss as to what else to check out.  And with how simple this
> application is, I can resort to de-fuseboxing it to get it to work.  I'm
> just curious and even a tad worried about this type of problem popping up on
> a larger project.
>
> Thank you!
>
> ==  -  ==   ==  -  ==    ==  -  ==
> Allen Graetz
> USI - Web Application Programmer
> 1-800-USINTERNET x241
> 612-253-3241
>
> ==  -  ==   ==  -  ==    ==  -  ==
>  ** Index.cfm Code **
> ==  -  ==   ==  -  ==    ==  -  ==
>
> <CFINCLUDE TEMPLATE="app_globals.cfm">
>
> <CFINCLUDE TEMPLATE="dsp_Header.cfm">
>
> <CFSWITCH EXPRESSION="#ATTRIBUTES.FuseAction#">
>
> <!-------- Email All Subscribers -------->
> <CFCASE VALUE="EmailAll">
>
>  <CFINCLUDE TEMPLATE="act_EmailAll.cfm">
>
> </CFCASE>
>
> <!-------- Add A Subscriber   -------->
> <CFCASE VALUE="InsertSubscriber">
>
>  <CFINCLUDE TEMPLATE="act_Subscriber_Insert.cfm">
>
> </CFCASE>
>
> <!---- List Current Subscribers -------->
> <CFCASE VALUE="ListAll">
>
>  <CFINCLUDE TEMPLATE="act_ListAll.cfm">
>
> </CFCASE>
>
> <!-------- Delete Subscriber -------->
> <CFCASE VALUE="Remove">
>
>  <CFINCLUDE TEMPLATE="act_Subscriber_Remove.cfm">
>
> </CFCASE>
>
> <!-------- Edit Current Subscribers -------->
> <CFCASE VALUE="Update">
>
>  <CFINCLUDE TEMPLATE="act_Subscriber_Update.cfm">
>
> </CFCASE>
>
> <CFDEFAULTCASE>
>
>  <CFINCLUDE TEMPLATE="dsp_Default.cfm">
>
> </CFDEFAULTCASE>
>
> </CFSWITCH>
>
> <CFINCLUDE TEMPLATE="dsp_Footer.cfm">
>
> ------------------------------------------------------------------------------
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to