That is correct. Since the original fusebox suggested not setting client cookies, they passed cfid and cftoken on the url line - So that's what the variable #caller.fusetoken# was for.
Mark -----Original Message----- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 4:04 AM To: CF-Talk Subject: Re: fusebox ? Douglas, Just edit the returnfuseaction tag. Remove the /#caller.fusetoken# from the end of the URLs in the CFLOCATION tags on lines 19 and 23. As I remember fusetoken was some kind of personal addition to fusebox that Steve Nelson and his company used and was never strictly a part of Fusebox, although it managed to find its way into some of the custom tags. Regards Stephen ----- Original Message ----- From: "Douglas Brown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 17, 2001 8:30 PM Subject: fusebox ? > I am needing help on returnfuseaction, this is my first use of the tag > and I get an error when trying to use it. I may be using it incorrectly. > > > > Error Diagnostic Information > > An error occurred while evaluating the expression: > > > "#returnURL#/#caller.fusetoken#" > > > > Error near line 27, column 22. > ------------------------------------------------------------------------ - > ------- > > Error resolving parameter CALLER.FUSETOKEN > > > The object FUSETOKEN is not present in the scope named CALLER. It is > likely that you have misspelled the name of the object you are trying to > access. > > > Here is a portion of my index.cfm > > <CFCASE VALUE="login"> > <CFIF isDefined("form.username") AND isDefined("form.password")> > <CFIF (FORM.USERNAME) IS NOT "" AND (FORM.PASSWORD) IS NOT ""> > <CFINCLUDE TEMPLATE="_qry/qry_get_login_info.cfm"> > <CFIF (check_user.recordCount) GT 0> > <CFSET session.loggedIn = "true"> > <CF_RETURNFUSEACTION > ACTION="return"> > </CFIF> > </CFIF> > </CFIF> > <CFINCLUDE TEMPLATE="_dsp/dsp_login.cfm"> > </CFCASE> > > <CFCASE VALUE="view_messages"> > <CFIF (session.LoggedIn) IS "false"> > <CF_RETURNFUSEACTION > ACTION="set" > RETURNURL="#CGI.PATH_INFO#?#request.attributesList#"> > <CFLOCATION URL="index.cfm?fuseaction=login" > ADDTOKEN="yes"> > </CFIF> > <CFINCLUDE TEMPLATE="_act/act_update_views.cfm"> > <CFINCLUDE TEMPLATE="_qry/qry_get_messages.cfm"> > <CFINCLUDE TEMPLATE="_dsp/dsp_view_messages.cfm"> > </CFCASE> > > ______________________________________________________________________ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

