You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Hello,
Im about to go online with my store and I just figured out that i have a problem with my shopping cart. It seams that anyone anywhere only has access to the same cart. Meaning that if a customer is online placing an order and i'm doing the same, then what i add to the cart and what they add to the cart both end up in the same cart.
Any ideas would be much appreciated.
Thanks,
Ali
PS my Script URL:
I currently have: .socialsmoke.com as my cookie domain setting
and: /cgi-bin/shop as my cookie path.
Offline
What browser are you using? I have heard this before but only with the MAC/SAfari browser.
Offline
Im using IE 6.0.28
Offline
weird, it sounds like a cookie issues. if your settings are right I am not sure what else it could be.
Offline
Do my cookie settings look right?
Offline
Any more suggestions???? I Need help badly...
Offline
At some point when entering the ccp pages on your site the URL changes from your domain name to your site's ip address. Pretty sure that would wreck correct cookie functioning. Track that down and your problem will probably be solved.
Offline
Yeah I think Ed nailed it on that one, I missed that when I checked it out. You must have the paths for certain links coded that way. Check your ste_layout.txt file.
Offline
Hey guys, good news...I talked to Terry today he was able to nail problem pretty quickly. As it happend, when I viewed the source fliles to make static HTML pages, each link included my user specific cookie information, affliate info, etc. here is an example of what my link to the shopping cart from my home page looked like.
<A HREF="http://www.socialsmoke.com/cgi-bin/shop/cp-app.cgi?usr=51F4885396&rnd=3168069&rrc=N&affl=&cip=12.238.54.17&act=&aff=&pg=cart">Shopping Cart</A>
Now that we narrowed down the problem we didnt have time to completely resolve the issue, does anyone have any idea what it should actually look like, minus my info?
my guess is:
| <a href="http://www.socialsmoke.com/cgi-bin/shop/cp-app.cgi?usr=&aff=&pg=cart">Shopping Cart </a>
Thanks in advance
Ali
Offline
it is it a static page it should be:
<a href="http://www.socialsmoke.com/cgi-bin/shop/cp-app.cgi?&pg=cart">Shopping Cart </a>
if it is in the cart meaning on the ste_layout file it should be:
<A HREF="(CGIVAR)common_url(/CGIVAR)&pg=cart">shopping cart</A>
in the cart you use the
(CGIVAR)common_url(/CGIVAR) and clickcart will dynamically fill the URL out based on the section (http or https) part of the site you are going to.
Outside the cart on any static pages you have to give the full path to the script then only reference the page you want to go to.
Offline