Quote:
Originally Posted by Chimpie
First, thank you for this mod and php script. It worked well for my community.
Is there a script that can be used to unsubscribe everyone from a single forum or multiple forums?
Thanks!
|
You can do a one-time unsubscribing from one or more forums by executing an sql query like:
Code:
DELETE FROM subscribeforum WHERE forumid IN (1, 2, 3)
You'd change (1, 2, 3) to the list you want to unsubscribe users from. Also, if you have a table prefix you'd have to add it before subscribeforum.
As always, be very careful when you modify the database. It would be wise to make sure you have a recent backup before you do anything.