I'm using Fusebox 3.....and ever since I moved my sites over to this server, I'm having all kinds of problems. Note: my apps work fine on my local server. So, I fixed the cfapplication tag as it is in the cfregistry sticky, and that cfid/cftoken error went away, but now I get another error.
Complex object types cannot be converted to simple values.
The expression has requested a variable or an intermediate expression result as a simple value, however, the result cannot be converted to a simple value. Simple values are strings, numbers, boolean values, and date/time values. Queries, arrays, and COM objects are examples of complex values.
The most likely cause of the error is that you are trying to use a complex value as a simple one. For example, you might be trying to use a query variable in a <CFIF> tag. This was possible in ColdFusion 2.0 but creates an error in later versions.
The error occurred in D:\hshome\....\Application.cfm: line 18
16 : <cfset directAccessFiles="#request.self#,">
17 : <cfloop list="#directAccessFiles#" index="file">
18 : <cfif not listFindNoCase(cgi.script_name, file, '/')>
19 : <!--- Run this code, including sending to request.self, or logging potential hack attempts --->
20 : </cfif>