cripes, maybe I should just consolidate into one post.
I changed the sessions.php variables around to see if that would help, and it didn't.
basically from
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);
to
Code:
define('COOKIE_NAME', '');
define('COOKIE_PATH', $cookiepath);
define('COOKIE_DOMAIN', $cookiedomain);
$secure = (isset($SERVER_PORT) && $SERVER_PORT == "443") ? 1 : 0;
define('COOKIE_SECURE', $secure);
I logged into the gallery and the forum both with IE 6, and with Firefox 0.8, and logged in as different users. Basically if I did anythiing at all -- clicked anywhere, etc. with one browser, the other would lose its cookie and force me to relog in.
I've reinstalled. I am not using the gallery on different subdomain -- gallery is
http://www.staytunedtheband.com/gallery
and forum currently is
http://www.staytunedtheband.com/vb3 (will change soon to forum)
the cookie is set up in vb3 as .staytunedtheband.com -- this was done for the vbadvanced portal hack.
I made sure to write into the sessions.php file the domain without the following slash.
i can't think of anything else to do. I don't know php enough to be able to trouble shoot. Crap I'm a bass player in a band. I'd just like this to work. Is there a solution, or has this hack been abandoned?