• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Restricting a certain account from logging in on website?

There, Added you. now, please could you help me?
But I'm last :(

Just messing with you :)

Looking over the sources, its more then just a simple edit or adding, I know you want certain groups access while others no access to overall or certain areas of the forum.
I didn't install it, but i don't see any set or get methods to different user groups.

Sure there are conditionals checking the access or group id but nothing so far i can see that asks.. hey what access level are you? or your access level can access this part of the forum while the rest of you can't
 
Last edited:
config.php
Code:
    $config['blocked_usernames'] = array(
        '123',
        'test'
    );
login.php, add it below L14
Code:
    } else if (in_array($username, $config['blocked_usernames'])) {
        $errors[] = 'You are not allowed to login with this account.';
 
Back
Top