View Full Version : Any Way to Merge forums???
MrBojangle1
06-21-2002, 03:03 AM
OK well I have a good forum but I want to merge with a friends that is doin equily well i want to know how to merge them both. Is there any way????
Steve Machol
06-21-2002, 03:07 AM
If you mean two vB forums, the answer is no. There is currently no way to import one vB into another.
MrBojangle1
06-21-2002, 03:16 AM
darn ok then thanks
FleaBag
06-21-2002, 10:18 AM
You could always install phpBB on your server, import vB1 [yours] to phpBB, and then import the phpBB into vB2 [your friends]. :)
Xenon
06-21-2002, 04:29 PM
you can make it with a few db-querys:
if you have the same usergroupids then you can mak the "fast" way.
lets say the board which would become bigger has 2000 users (highest userid lets say 2499)
run this query in the exporter DB:
UPDATE user SET userid=userid+2500
UPDATE userfield SET userid=userid+2500
lets say the importing board has the highest forumid=10
in the exporter db run
UPDATE forum SET forumid=forumid+10
lets say the importing board has 20000 threads (highest id=20000)
UPDATE thread SET threadid=threadid+20000, postuserid=postuserid+2500
UPDATE thread SET forumid=forumid+10
and to the posttable with highest postid=100000
UPDATE post SET postid=postid+100000, threadid=threadid+20000, userid=userid+2500
then make a dump of the tables user, userfield,post, thread and forum and then upload it to the other db.
this must work, but be careful
MrBojangle1
06-21-2002, 06:57 PM
whoa thanks I MIGHT go with the phpboard idea sounds safer
MrBojangle1
06-23-2002, 02:52 AM
heh how would you dump a vbulletin to a phpbb???
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.