Login Being Blocked
Posted
#4603
(In Topic #929)
Posted
claims that I am using someone else's id
I doubt that's what Composr is saying so please give the specific error message so we can understand better. It might be something about cookies conflicting. Or it might be coming from somewhere other than Composr.
Normally Composr sites will not conflict with session cookies at least, because each site is given a randomised cookie name. However, if you somehow cloned one site to create the other, that could explain overlapping configuration.
The session cookie name is configured in _config.php and looks something like this:
Code
$SITE_INFO['session_cookie'] = 'cms_session__d61768dc037c33acddb1eb501ac22a14';
Really you should also code each site to have its own cookie path. The default is the webroot, like:
Code
$SITE_INFO['cookie_path'] = '/';
But if you have multiple sites you may want to do like:
Code
$SITE_INFO['cookie_path'] = '/site_a';
Code
$SITE_INFO['cookie_path'] = '/site_b';
You would then need to clear out any existing cookies on your domain in your web browser to stop the conflict continuing.
Posted
As you suggest, the cookies are likely getting confused.
Thanks
1 guest and 0 members have recently viewed this.