while you were having a look i made a change which seem to have fixed the redirect problem....
these are the changes i made from when i asked if everything looked ok....
i made the modification from this......
//header("Location: $url");
$url = str_replace("\"", "", $url);
eval("standardredirect(\"".gettemplate("redirect_l ogin")."\",\"\$url\");");
} else {
$bbuserinfo=getuserinfo($userid);
eval("standardredirect(\"".gettemplate("redirect_l ogin")."\",\"\$url\");");
}
to this....
}
//header("Location: $url");
$url = str_replace("\"", "", $url);
eval("standardredirect(\"".gettemplate("redirect_l ogin")."\",\"/index.php?s=$session[dbsessionhash]\");");
} else {
$bbuserinfo=getuserinfo($userid);
eval("standardredirect(\"".gettemplate("redirect_l ogin")."\",\"/index.php?s=$session[dbsessionhash]\");");
}
then the redirect problem seemed to have corrected itself.
as of for the cookie problem ive had that since day one..lol
i have no idea whats wrong...
here are my cookie settings in my admin cp...
GZIP compression level 1
Cookie Domain .mydomain.com (noted the 2 dots)
path to save cookies is /
is that correct?
|