#1
Posted 15 June 2012 - 03:57 PM
Anyone have any thoughts or fixes?
Thanks!
#2 ONLINE
Posted 15 June 2012 - 04:45 PM
See my Profile (click here) for links to templates, commercial add ons and professional support. Thank you
#3
Posted 15 June 2012 - 06:48 PM
#4 ONLINE
Posted 15 June 2012 - 08:32 PM
hmmmm, if you are using v2.3.1 standard code, you shouldn't be having an issue with the buttons. As far as I know, the standard code works with all browsers.
Chris
See my Profile (click here) for links to templates, commercial add ons and professional support. Thank you
#5
Posted 15 June 2012 - 08:44 PM
One of these two usually work:
define('HTTP_COOKIE_DOMAIN', '.domain.com');
define('HTTP_COOKIE_DOMAIN', 'www.domain.com');
(replace domain.com with your domain name)
If you have it set to one change to the other and test with all available browsers to see if it helps or not.
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#6
Posted 15 June 2012 - 10:10 PM
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');
and i have had some people tell me they cant login so i just manually do their order....
what should those 4 lines look like? i am not using the https currently.
thanks
#7
Posted 15 June 2012 - 10:25 PM
define('HTTP_COOKIE_DOMAIN', '.domain.com');
define('HTTPS_COOKIE_DOMAIN', '.domain.com');
Or:
define('HTTP_COOKIE_DOMAIN', 'www.domain.com');
define('HTTPS_COOKIE_DOMAIN', 'www.domain.com');
Whichever one works for you.
The paths depend on where the shop is installed.
For a "root" install use:
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');
If you installed in a folder named "catalog" it should be:
define('HTTP_COOKIE_PATH', '/catalog/');
define('HTTPS_COOKIE_PATH', '/catalog/');
Edited by germ, 15 June 2012 - 10:26 PM.
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#8
Posted 18 June 2012 - 10:19 PM
so i should set the cookie domains to /CATALOG/ still even though its actually going to a www.domain.com address for the store as a addon domain for the account?
#9
Posted 18 June 2012 - 10:29 PM
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#10 ONLINE
Posted 18 June 2012 - 11:51 PM
Just copyed typical cpanel subdomain no catalog???
<?php
define('HTTP_SERVER', 'http://www.demo1.xxxxx.com');
define('HTTPS_SERVER', 'http://www.demo1.xxxxx.com');
define('ENABLE_SSL', false);
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
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/xxxxxxx/public_html/demo1/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
define('DB_SERVER', 'localhost');
define('DB_SERVER_USERNAME', 'xxxxxx_xxx');
define('DB_SERVER_PASSWORD', 'xxxxxxx');
define('DB_DATABASE', 'xxxxxx_demo1');
define('USE_PCONNECT', 'false');
define('STORE_SESSIONS', 'mysql');
?>
Edited by joli1811, 18 June 2012 - 11:53 PM.
#11
Posted 19 June 2012 - 12:07 AM
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#12 ONLINE
Posted 19 June 2012 - 12:29 AM
sorry I normally have www.xxxxxxxx.com
I missed that it was an addon domain so guess it is the full confige
<?php
define('HTTP_SERVER', 'http://www.xxxxxxx.com');
define('HTTPS_SERVER', 'http://www.xxxxxxx.com');
define('ENABLE_SSL', false);
define('HTTP_COOKIE_DOMAIN', 'www.xxxxxxxxxx.com');
define('HTTPS_COOKIE_DOMAIN', 'www.xxxxxxxxxx.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/xxxxxxx/public_html/xxxxxxxxx/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
define('DB_SERVER', 'localhost');
define('DB_SERVER_USERNAME', 'xxxxxx');
define('DB_SERVER_PASSWORD', 'xxxxxxxx');
define('DB_DATABASE', 'xxxxxxxxx');
define('USE_PCONNECT', 'false');
define('STORE_SESSIONS', 'mysql');
// EOF
I would check the full path again /home/xxxxxxx/public_html/xxxxxxxxx/');
Edited by joli1811, 19 June 2012 - 12:40 AM.
#14
Posted 25 June 2012 - 08:17 PM
Can't be much help without the URL.
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#15
Posted 25 June 2012 - 08:58 PM
If the cookie settings are wrong the session ID never disappears from the browser address window and usually changes with every click.
And you usually can't login.
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#16
Posted 25 June 2012 - 09:22 PM
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#17
Posted 25 June 2012 - 10:27 PM
#18
Posted 25 June 2012 - 11:13 PM
If you can ask everyone who can't login or buy things what browser they use maybe you can begin to narrow it down.
The only problem I saw was on my monitor the buttons in the header get pushed down into the right column because of the wide logo.
If you want some tips on how to fix that start reading from here to multimixer's first post.
"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."
- Me -
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
#19
Posted 10 July 2012 - 02:50 PM
Also tagged with one or more of these keywords: login, internet explorer
osCommerce Online Merchant v2.x →
Installation and Configuration →
Right column in Internet explorer is acting wierdStarted by Duroniel, 22 Nov 2012 |
|
|
||
osCommerce Online Merchant v2.x →
General Support →
Create an Account Page, Enter State Issue In Google ChromeStarted by ren3784, 13 Sep 2012 |
|
|
||
osCommerce Online Merchant v2.x →
General Support →
Google Website Translator in IE not working fullyStarted by roadog, 30 Aug 2012 |
|
|
||
ARCHIVED
osCommerce Online Merchant v2.x →
General Support →
tep_draw_formStarted by micharper, 14 Feb 2012 |
|
|









