MyBB Community Forums

Full Version: Myawards merge error! Please help me! [Will Pay $10 for a fix]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, how do i merge two mybb forums into one. I have the database of the forum that i need to import. Im aware of this: http://docs.mybb.com/Running_the_Merge_System 
But the question is, how do i import the database, to my existing one? Cause i just tried using the merge system, and it has no option to upload the database for it to merge. I need help, asap.

Like what do i need to do on phpadmin, a simple guide would help me dearly. 

Edit: Merge completed.


Now im getting this error, when clicking on a merged thread.
[Image: 5f0a58cea72beb70983b233127fbb8a0.png]
the second database needs to be imported to your web server as a separate database.
it should be connected through the merge system (while running) for the processing.

precaution: keep backups of both the databases. turn forum offline before merging.
I'd prefer merging at local host web server (eg. xampp or wamp) in my own computer!
Ok, ive done the merge. Now im getting this problem:
http://gyazo.com/5f0a58cea72beb70983b233127fbb8a0
Did you disabled all the plugins before doing the merge?
(2014-08-29, 07:36 PM)Codename Wrote: [ -> ]Did you disabled all the plugins before doing the merge?

No Sad damn, how can i resolve this..
What's your site URL?
(2014-08-29, 07:42 PM)Codename Wrote: [ -> ]What's your site URL?

My site is closed, due to my trying to resolve this. If you could give me a description on how to resolve this, i'll be more than happy. I need this working before i open the boards. 
I probably shouldn't be giving you support since I do have my own Awards plugin, but whatever. Find:
foreach($blabla as [...])
{
[...]
}

Wrap it with an if check, like so:
if(!empty($blabla) && is_array($blabla))
{
foreach($blabla as [...])
{
[...]
}
}

[...] stands for whatever is in it and $blabla is not a variable you may actually find in there.

http://php.net/manual/en/control-structures.foreach.php
http://php.net/manual/en/function.in-array.php
http://php.net/manual/en/function.empty.php