|
If a user belongs to multiple usergroups simply download the latest photopost and upload smf.php again
I dont think any logouts have to do with sessions. This is right in the file
if ( ($PHPSESSID) && ($PHPSESSID == $sessionid) ) {
$checkpass = 1;
}
elseif ($ID_PASSWORD) {
if ($lastpass == $ID_PASSWORD) {
$checkpass = 1;
}
}
elseif ($dbpassword) {
if ($dbpassword == $finalpass) {
$checkpass = 1;
}
I would beleive your cookies are somehow being dropped. You saying SMF has nowhere in there settings a place to define the cookies?
|