I have a MSM site, running 1.7.0 20101018
I have two masked CPs one in a admin-english folder the other admin-french
In each folder I have path.php with these variables setup
$system_path = "../system/";
$site_name = 'admin-english';
$cp_url = 'http://example.com/admin-english/index.php';and
$system_path = "../system/";
$site_name = 'admin-french';
$cp_url = 'http://example.com/admin-french/index.php';The session type is set to cookies (because my client had continued problems with getting locked out the site until he cleared his cache).
What seems to be the problem is it remembers what site i last visited, so when i visit the url through a specific admin it takes me to the wrong site. This is a problem due to the fact I am using “edit this” links which often results in the person trying to edit content that doesn’t exist on that site.
Do you have any ideas how to solve this issue?