Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I remove session ids from my site


darrellfreeman

Recommended Posts

Posted

Hi,

 

If any could help me I would really appreciate it:

 

How do I remove sessions id's from my site? Sometimes they appear and sometimes they do not.

 

If someone could explain in simple terms how I go about this I would really appreciate it.

 

Thanks,

 

Darrell :-"

 

If want to have a look at the site please go to neatdesignerclothing (dot) co (dot) uk

Posted
Try installing the Ultimate SEO contribution.

 

Jack

 

Hi Jack,

 

Thanks for your response.

 

I have installed Ultimate SEO Contribution.

 

Just now need to turn off session Id's. Sometimes they appear sometimes they don't. Not totally sure on this but I think i'm menat to change something in my admin area in the configure.php.

 

Here is my code, any ideas:

 

<?php

/*

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.co.uk

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

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

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

define('HTTP_SERVER', 'http://www.neatdesignerclothing.co.uk'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'http://www.neatdesignerclothing.co.uk'); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN', 'neatdesignerclothing.co.uk');

define('HTTPS_COOKIE_DOMAIN', 'neatdesignerclothing.co.uk');

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/abcdiscs/public_html/');

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

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

 

// define our database connection

define('DB_SERVER', 'localhost'); // eg, localhost - should not be NULL for productive servers

define('DB_SERVER_USERNAME', 'abcdiscs_osc1');

define('DB_SERVER_PASSWORD', 'mvngQ83tfvmx');

define('DB_DATABASE', 'abcdiscs_osc1');

define('USE_PCONNECT', 'false'); // use persistent connections?

define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'

define('DIR_WS_RSIMAGES', DIR_WS_IMAGES . 'res/');

 

define('SPECIAL_IMAGE_WIDTH',120);

define('SPECIAL_IMAGE_HEIGHT',120);

?>

Archived

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

×
×
  • Create New...