ok I found this in the 4images sessions.php that either mtha or matrix put together, and I want to confirm that this is correct, as it may be explaining my cookie problems. Should cookie_path be pointing at $cookiedomain? etc:
line 425 I believe
Code:
define('COOKIE_NAME', '');
define('COOKIE_PATH', $cookiedomain);
define('COOKIE_DOMAIN', $cookiepath);
$secure = (isset($SERVER_PORT) && $SERVER_PORT == "443") ? 1 : 0;
define('COOKIE_SECURE', $secure);