MyBB Community Forums

Full Version: Does anyone know how to keep users from accessing people that are banned profile?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Like how you delete people from the site. How do you make it do that when they have like a 3 day ban?
You could hook into member_profile_start and do this check:

if(in_array($memprofile['usergroup'], "ARRAY OF BANNED GROUPS"))
{
error("This user is banned...");
}

I can write a plugin for this. Smile Not sure if there are any out there. There's at least one, http://mods.mybb.com/view/error-profile-baned . Smile
(2013-02-25, 06:06 AM)Seabody Wrote: [ -> ]You could hook into member_profile_start and do this check:

if(in_array($memprofile['usergroup'], "ARRAY OF BANNED GROUPS"))
{
error("This user is banned...");
}

I can write a plugin for this. Smile Not sure if there are any out there. There's at least one, http://mods.mybb.com/view/error-profile-baned . Smile

Seabody could you create a plugin for this as the above one is old and does not work. Smile
(2013-02-26, 10:09 PM)MisterW Wrote: [ -> ]
(2013-02-25, 06:06 AM)Seabody Wrote: [ -> ]You could hook into member_profile_start and do this check:

if(in_array($memprofile['usergroup'], "ARRAY OF BANNED GROUPS"))
{
error("This user is banned...");
}

I can write a plugin for this. Smile Not sure if there are any out there. There's at least one, http://mods.mybb.com/view/error-profile-baned . Smile

Seabody could you create a plugin for this as the above one is old and does not work. Smile

Of course. Smile

http://mods.mybb.com/view/no-banned-profile

It's awaiting validation on the Mods Site. Smile
(2013-03-11, 07:38 AM)Seabody Wrote: [ -> ]
(2013-02-26, 10:09 PM)MisterW Wrote: [ -> ]
(2013-02-25, 06:06 AM)Seabody Wrote: [ -> ]You could hook into member_profile_start and do this check:

if(in_array($memprofile['usergroup'], "ARRAY OF BANNED GROUPS"))
{
error("This user is banned...");
}

I can write a plugin for this. Smile Not sure if there are any out there. There's at least one, http://mods.mybb.com/view/error-profile-baned . Smile

Seabody could you create a plugin for this as the above one is old and does not work. Smile

Of course. Smile



It's awaiting validation on the Mods Site. Smile

Thank's Seabody it works perfectly Smile I have edited the lang file tho to display a different message hope that's okay. Smile
(2013-03-11, 05:09 PM)MisterW Wrote: [ -> ]Thank's Seabody it works perfectly Smile I have edited the lang file tho to display a different message hope that's okay. Smile

Most certainly, it's released under Creative Commons so you can do pretty much anything with it.