I keep getting passed back to http://site/index.cfm?rfa=null&&;

here is the code:

/app_secure.cfm
<cfif not isdefined ("client.authorid")>
<cfset client.message="#attributes.message#">
<cf_returnfuseaction
         action="set"
         returnurl="#cgi.path_info#?#request.attributeslist#"
         gotourl="#request.siteroot#members/index.cfm?fuseaction=login">
</cfif>


/fuse1/index.cfm

<cfcase value="newwriting">
   <cfmodule template="#request.siteroot#/app_secure.cfm" message="">
   <cfinclude template="../queries/qry_editwritings_list.cfm">
   <cfinclude template="../display/dsp_editwritings_list.cfm">
</cfcase>

<cfcase value="editwritings">
   <cfmodule template="#request.siteroot#/app_secure.cfm" message="">
   <cfinclude template="display/dsp_newwritngsform.cfm">
</cfcase>



/members/index.cfm

<cfcase value="login">
<!--- Validate Login --->
<cfcase value="validatelogin">
         <cfinclude template="action/act_login.cfm">
         <cfif returnvalue eq 9>
                 <cfmodule template="display/dsp_login.cfm" ie="notfound" >
         <cfelse>
                 <cfoutput query="qry_spime_login">
                 <cfset client.username = #TRIM(qry_spime_login.username)#>
                 <cfset client.authorid = #TRIM(qry_spime_login.authorid)#>
                 <cf_returnfuseaction action="return">
                 </cfoutput>
         </cfif>
</cfcase>

<cfcase value="logout">
         <cfmodule template="action/act_logout.cfm">
</cfcase>

<cfcase value="newwriter">
         <cfmodule template="display/dsp_newwriterform.cfm" 
ie="#attributes.ie#">
</cfcase>

<!--- Insert user--->
<cfcase value="insertwriter">
         <cfinclude template="action/act_newuser.cfm">
         <cfif returnvalue eq 9>
         <cfmodule template="display/dsp_newwriterform.cfm" ie="exists">
         <cfelse>
                 <cfset client.username = #TRIM(attributes.username)#>
                 <cfset client.authorid = #val(max_id)#>
                 <cf_returnfuseaction action="return">
         </cfif>
</cfcase>


any ideas?

I can provide more code if needed.




end
***********************************************************
Every child is an artist. The problem is how to
remain an artist once he grows up.

-Pablo Picasso, painter and sculptor (1881-1973)
***********************************************************
Michael "Maxx" Porter
Vice President
Paradox Studios Inc.
847-869-3673
mailto:[EMAIL PROTECTED]
http://www.theparadox.com/home.html


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to