Topic: How do you remove banned members from the user list?

I do not want to see them in the user list and niether do other active members? Can this be done, because I cannot find it on the Admin interface.

2

Re: How do you remove banned members from the user list?

You can delete u user, view his profile, click on Administration and you have an option do delete him. But I think he will be able to open a new account.

http://www.info-mob.com/forum/ - Croatian forum only, don't bother if you don't speak Croatian :)

Re: How do you remove banned members from the user list?

well, thats crap then isnt it. sorry but it is.

Re: How do you remove banned members from the user list?

Well there are a couple things you can do:

1. Disallow users from registering with the same email address. This can be done by going into your administration panel and in permissions, look at registration.

and

2. You can record that person's IP address and dont let anyone with that IP address in the website, can be easily done by adding something like this to your index.php or header.php:

/*********************************************************/
$banned_ip_address = '0.0.0.0'; //What ever the IP address is

if($_SERVER['REMOTE_ADDR'] == $banned_ip_address)
{
    message('You are banned from this website, please leave');
}

/*********************************************************/

and thats it