I have one domain (call it IP 1.1.1.1)
On this domain I have multiple sites, but they use redirects...
So, we have sites
A, B, C
If you ping any of these sites you get IP 1.1.1.1 they simply route to
different directories based on the server_name variable.
Ok so that explains that.
Each of the separate sites have an Application page that is set up basically
with the code below. Each sites has the exact same info in the App.cfm file
except for some path stuff that I use.
<cfapplication name="eProduct"
clientmanagement="Yes"
setclientcookies="Yes"
sessionmanagement="yes"
SESSIONTIMEOUT=#CreateTimeSpan(0,8,0,0)#
APPLICATIONTIMEOUT=#CreateTimeSpan(0,8,0,0)#
SETDOMAINCOOKIES="Yes">
Ok, now on each of these sites you can order items. I do that with the code
below using a client variable.
<cfset SC_cart = "client." & Attributes.Cart >
So basically here is my problem....
I want the cart to be globally available to all sites. I though setting my
domain cookie flag to yes would accomplish that but apparently in
conjunction with using client variables for my cart that is not the case.
Anyone got any ideas???
Thanks,
Stephen
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

