Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

who's online


Digerdoo

Recommended Posts

Heppi,

 

Are you using the basic WOL that comes with MS2.2? The Whos' Online Enhancement contribution identifies Spiders/Bots separate from people".

 

Either way, many people visiting is good! Duplicate entries, however, can be annoying. Entries in WOL are listed based on the SessionID. If a visitor's SessionID changes, they show up as a separate entry for each SessionID.

 

I have noticed that not setting up the Cookie references correctly in catalog/includes/configure.php causes the SessionID to change frequently. When users hit the back button, then click on another catalog link, their SessionID changes. Users going to their cart or checkout (switching to https) can change SessionIDs if it's configured that way in admin (check out Admin Panel ->Configuration->Sessions).

 

Hope that helps.

 

ed

Link to comment
Share on other sites

Heppi,

 

Are you using the basic WOL that comes with MS2.2?  The Whos' Online Enhancement contribution identifies Spiders/Bots separate from people".

 

Either way, many people visiting is good!  Duplicate entries, however, can be annoying.  Entries in WOL are listed based on the SessionID.  If a visitor's SessionID changes, they show up as a separate entry for each SessionID.

 

I have noticed that not setting up the Cookie references correctly in catalog/includes/configure.php causes the SessionID to change frequently.  When users hit the back button, then click on another catalog link, their SessionID changes.  Users going to their cart or checkout (switching to https) can change SessionIDs if it's configured that way in admin (check out Admin Panel ->Configuration->Sessions).

 

Hope that helps.

 

ed

-------------------------------------------------------------------

Yes i'm using original WOL but every time i refresh my page it duplicate me again..

 

So what i do ?

Link to comment
Share on other sites

Heppi,

 

Let's look at your configure.php.  Post the top 15 lines here from catalog/includes/configure.php.

 

ed

 

-----------------------------------------------------------

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://mydomain.com'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://ssl.mydomain.com'); // eg, https://localhost - should not be empty for productive servers

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

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

define('HTTPS_COOKIE_DOMAIN', 'https://ssl.mydomain.com');

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '/');

define('DIR_WS_HTTP_CATALOG', '/');

define('DIR_WS_HTTPS_CATALOG', '/');

define('DIR_WS_IMAGES', 'images/');

 

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_INCLUDES', 'includes/');

define('DIR_WS_BOXES', DIR_WS_INCLUDES . '/boxes/');

define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . '/functions/');

define('DIR_WS_CLASSES', DIR_WS_INCLUDES . '/classes/');

define('DIR_WS_MODULES', DIR_WS_INCLUDES . '/modules/');

define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . '/languages/');

 

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

define('DIR_FS_CATALOG', '/home/customers/mydomaincom/public_html/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

Link to comment
Share on other sites

Heppi,

 

I am not an expert on this but I used to get a lot of duplicates as well. I did the following after reading about it elsewhere on thsi forum and it helped. Try switching HTTP_COOKIE_DOMAIN to .mydomain.com when your traffic dies down. Give it a day or so and see if it helps.

 

You will still get some duplicates because of people using the back button. But, it should be fewer.

 

ed

Link to comment
Share on other sites

Heppi,

 

I am not an expert on this but I used to get a lot of duplicates as well.  I did the following after reading about it elsewhere on thsi forum and it helped.  Try switching HTTP_COOKIE_DOMAIN to .mydomain.com when your traffic dies down.  Give it a day or so and see if it helps. 

 

You will still get some duplicates because of people using the back button.  But, it should be fewer.

 

ed

-----------------------------------------------------

It really works.. thousand thanks :thumbsup:

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...