Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

CVV Help Popup displays Cookie Usage page?


WhiteKnight

Recommended Posts

Using the latest code on the Linkpoint API - V 1.3.4 from Oct 21, 2008 and osC RC2a

 

When a user clicks on the Where? link for the CVV Help Popup the default osC cookie usge page is displayed.

 

Cookies and sessions are being set from other pages and this only occurs when the popup is called from the Linkpoint_API.

(For example product reviews and advanced search work OK and use the javascript popup function).

 

Tried on XP + Vista with FF 2.x and 3.x and IE7 and with cookies being accepted by browser.

 

So I am not sure if this is really a cookie issue or something else that causes it to get that code.

 

The Catalog is in the root and Cookies are set in the catalog/includes/configure.php file like so (and seem to work elsewhere on the site):

 

define('HTTP_COOKIE_DOMAIN', 'http://www.mydomain.com');

define('HTTPS_COOKIE_DOMAIN', 'https://www.mydomain.com'); // set for SSL use

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '/');

 

Anyone else had this happen or have any suggestions?

 

Thanks

 

Walter

Edited by WhiteKnight
Link to comment
Share on other sites

correct to proper one:

 

define('HTTP_COOKIE_DOMAIN', 'www.mydomain.com');
define('HTTPS_COOKIE_DOMAIN', 'www.mydomain.com'); // set for SSL use
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');

 

or even better:

 

define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', ''); // set for SSL use
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');

Please read this line: Do you want to find all the answers to your questions? click here. As for contribution database it's located here!

8 people out of 10 don't bother to read installation manuals. I can recommend: if you can't read the installation manual, don't bother to install any contribution yourself.

Before installing contribution or editing/updating/deleting any files, do the full backup, it will save to you & everyone here on the forum time to fix your issues.

Any issues with oscommerce, I am here to help you.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...