This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

User in Vbulletin gebannt - aber er kann im CMS immer noch kommentieren


avatar
dbode 0
From: -
User in Vbulletin gebannt - aber er kann im CMS immer noch kommentieren

Hoi, ich habe ein kleines Problem mit einem User. Er kann im Newssystem und im CMS noch posten, obwohl er im Forum als banned steht. Die Usergruppen im Forum sind 8 und 19. Diese sind auch im bbwrapper eingetragen, dass sie nicht posten können:

function BBGetUser($username, $password) {

global $bb_prefix;

BBConnect();

$table = $bb_prefix."user";

$result = mysql_query("SELECT * FROM $table WHERE username = '$username'");
$userdata = mysql_fetch_array($result);

$password = md5($password.$userdata[salt]);

if (($userdata[usergroupid] != 3) or ($userdata[usergroupid] != 8) or ($userdata[usergroupid] != 19)) {
($userdata[password] == $password) ? $pwok = 1 : $pwok = 0;
} else {
$pwok = 0;
}

return $pwok;

}


Irgendwie scheint das aber nicht zu funktionieren Grinning Face

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: User in Vbulletin gebannt - aber er kann im CMS immer noch kommentieren
avatar
Administrator
1340
From: Vienna, Austria
User in Vbulletin gebannt - aber er kann im CMS immer noch kommentieren

Warum machst Du es nicht umgekehrt und trägst die Gruppen ein die nicht gebannt sind? So sollte es problemlos funktionieren.

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.