Hello !!

I migrate an ecommerce application from CF 4.5 to CFMX 6.1.

I am using in in CF 4.5 the client.cfid and client.cftoken for identifying
the user in my cart. In CFMX 6.1 the client.vars doing problems.

I tried this work a round:

<cfapplication name="2gether" clientmanagement="Yes" sessionmanagement="Yes"
setclientcookies="No" sessiontimeout="#CreateTimeSpan(0,1,0,0)#"
clientstorage="registry">

<cfif not IsDefined("Cookie.CFID")>
  <cfcookie name="CFID" value="#CFID#">
  <cfcookie name="CFTOKEN" value="#CFTOKEN#">
</cfif>

But I still got the error: Error Executing Database Query.

During the error the server will execute this query:

<cfquery name="known" datasource="datasource" dbtype="ODBC">
        SELECT * FROM customer
        WHERE cfid = '#client.cfid#'
        and portal_id = '#session.portal_id#'
</cfquery>

Does anybody have a solution !!

Thanks a lot for the the support.


Daniel





~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221573
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to