Protect Plugin: XCART
The plugin has been tested with Xcart 5
Settings:
Open file RequestAbstract.php in xcart_folder/var/run/classes/XLite/Core/, find
protected function getCookiePath($secure = false)
{
$url = $this->getCookieURL($secure);
return isset($url['path']) ? $url['path'] : '/';
}
and replace it with
protected function getCookiePath($secure = false)
{
return '/';
}