Question
application.cfc <cfobject name="SESSION.myShoppingCart" component="ShoppingCart">
Can anyone tell me why I'm getting this:
Element MYSHOPPINGCART is undefined in SESSION
I added this line to my application.cfc (in the onSessionStart section)
<cfobject name="SESSION.myShoppingCart" component="ShoppingCart">
To be sure , I ended the session and application by setting a timeout value of 0,0,0,0 but I'm still getting the above
The actual line of code triggering this error is in the addMerch.cfm page and is:
<cfinvoke component="#SESSION.myShoppingCart#" method="Add" merchid="#URL.addMerchID#">
