MyBB Community Forums

Full Version: move threads from one forum into another
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to move all the threads from member introductions forum to rules and announcement forum and delete the member introduction forum.
Is there any way to do this?
You can click the checkbox next to where it says last post on forumdisplay.php. That will select all threads on the page then where it says inline thread moderation, choose Move Threads. If there are many pages you may wish to just run a Query in PHPMyAdmin.
UPDATE mybb_threads SET fid='x' WHERE fid='y'

Replace x with the fid of the forum you want them to go to. Replace y with the fid of the forum you want them moved from.
Thank you. The forum had 40 pages so I was looking for a easier solution and your's was of great help.