All of these are wrong:
Code:
define('HTTP_COOKIE_DOMAIN', 'www.sjleather.com');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_PATH', '');
Based on your domain and path info, they should be:
Code:
define('HTTP_COOKIE_DOMAIN', 'sjleather.com');
define('HTTPS_COOKIE_DOMAIN', 'sjleather.com');
define('HTTPS_COOKIE_PATH', '/osCommerce/');
The admin configure.php is used for the Admin panel and the catalog configure.php file is used for the catalog.
Bookmarks