[Request]Auto Usergroup Change - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Extensions (https://community.mybb.com/forum-201.html) +--- Forum: Plugins (https://community.mybb.com/forum-73.html) +---- Forum: Plugin Requests (https://community.mybb.com/forum-65.html) +---- Thread: [Request]Auto Usergroup Change (/thread-6297.html) |
[Request]Auto Usergroup Change - .Lou - 2006-01-25 I would like to request a modifcation. The basis is that after a certain number of posts, a user is switched to another usergroup. Unlike the user title changing, this would actually switch them to another group, allowing them to view more forums, and have special "active members only" information. Thanks. Bump! Sorry, I really need this. Double bump. RE: [Request]Auto Usergroup Change - Michael S. - 2006-01-26 Put the following code into global.php: Change the group ids and the postnumber to fit your needs.
RE: [Request]Auto Usergroup Change - .Lou - 2006-01-26 Thanks. I will have this applied as soon as the forum that needs this is back online RE: [Request]Auto Usergroup Change - Michael S. - 2006-01-26 A nicer solution (far less queries): Insert into global.php When you use this method, you have to run the following query via phpmyadmin to update all users that already have more than x posts: x = new goup idy = minimal post number z = old group id RE: [Request]Auto Usergroup Change - xiao - 2006-03-13 This one owns! Thanks a lot! RE: [Request]Auto Usergroup Change - Mogadishu - 2006-03-21 Where in Global.php to insert this CODE ? (It gives Errors) I Use MyBB - 1.1 Also If My Gorup i Wish To Change Is "Registered" And I want to Change it With "Member" After X Number of Post I Ghange this Code
With:
Or HOW !? Please Help me . RE: [Request]Auto Usergroup Change - Michael S. - 2006-03-21 Insert the code at the end before the ?>. You have to edit the Usergroup-IDs. You can see them in the usergroups cache or in your database via phpMyAdmin. Example: If the ID of the group "Registered" is 1 and the ID of the other group is 8 then the code should look like this:
RE: [Request]Auto Usergroup Change - Mogadishu - 2006-03-21 OK ! Thank YOU Verry MUCH ! (Now I Understand). 10x ! EDITED: How to update all users that already have more than x posts ? I Maded what you told in 4 post. (But didn't changed Users) ? Please explaine me this step. Thank You in Advence ! RE: [Request]Auto Usergroup Change - IMPAQ - 2006-03-21 Would that move moderators and/or administrators from their respective usergroup? RE: [Request]Auto Usergroup Change - Augustino - 2006-03-21 lou_habs Wrote:I would like to request a modifcation. The basis is that after a certain number of posts, a user is switched to another usergroup. Unlike the user title changing, this would actually switch them to another group, allowing them to view more forums, and have special "active members only" information. But currently is this possible in mybb 1.1 without modifications? |