Are you using a proxy by any chance? If so their client IP would be different from their real IP if you have their real IP ban that instead and that'll block them from joining the client alternatively if you're using PlusEMU you can Machine Account and IP the user in one swoop.
Using Revcms, right? On top of every page I will assume there is a file included that checks if the account is banned or not. Just include/require that file in the client aswell.im using XAMPP now and host it on Hamachi until all works and than i look for a vps but what i mean is if i give someone a normal 24H ban they cant acces the website but they can stil join the client and i am using Silverwave Emu
You must be registered for see linksLook
no there isnt something like that but what i dont get is Whatever i type even it is {url}/dijfijieufheuAFHIUEHFIUHAFH i come on the Youre Banned padge. {url}/client is the only page were this doesn't workUsing Revcms, right? On top of every page I will assume there is a file included that checks if the account is banned or not. Just include/require that file in the client aswell.
Post your /me page, and your /client page. What you're claiming makes absolutely no sense unless you've gone into the rev classes and written some shit.no there isnt something like that but what i dont get is Whatever i type even it is {url}/dijfijieufheuAFHIUEHFIUHAFH i come on the Youre Banned padge. {url}/client is the only page were this doesn't work
<?php
if(mysql_num_rows(mysql_query("SELECT NULL FROM bans WHERE value = '".$_SESSION['user']['username']."' LIMIT 1")) > 0){
header('Location: banned');
exit();
}
?>
becouse i Always used silverwave and never have problems with it, but witch one you recomend to use?Edit: A little of-topic, but why are you using silverwave?
works for me thanksAdd the following into your client.php, just under <!DOCTYPE html>
Code:<?php if(mysql_num_rows(mysql_query("SELECT NULL FROM bans WHERE value = '".$_SESSION['user']['username']."' LIMIT 1")) > 0){ header('Location: banned'); exit(); } ?>