SMF Support > Converting to SMF
[SMF Converter] Burning Board 3
JaKe.OnE:
I converted from wbb3.0.9 to SMF1.1.9. Worked fine!
The only problem are still the passwords, but it seems the fault is only on my side because I have not set a FTP user to apply the package because I only have a SSH root.
I will check this.
Thanks for the good work!
TE:
there is only one line changed in /Sources/LoginOut.php
you can change these line manually, open the LogInOut.php with a text-editor and search for:
--- Code: ---// Maybe they are using a hash from before the password fix.
--- End code ---
add after:
--- Code: ---// BurningBoard3 Login Method (double salted SHA1)
elseif (strlen($user_settings['passwordSalt']) == 40)
$other_passwords[] = sha1($user_settings['passwordSalt'] . sha1($user_settings['passwordSalt'] . sha1($_REQUEST['passwrd'])));
--- End code ---
zeitwort:
--- Quote from: TE on June 01, 2009, 10:35:29 AM ---in general that's possible, but it requires a lot of developement time.. Internal SMF links use the ID_TOPIC (unique ID from a Topic) whereas WBB3 Links only use the ID_MSG (unique ID from the messages).
--- End quote ---
Would you help me to design a step by step query?
We have id_msg and id_topic in the same table
--- Code: ---UPDATE `smf_messages`
SET `body` = replace(`body`, "[quote='","[quote author=")
--- End code ---
--- Code: ---UPDATE `smf_messages`
SET `body` = replace(`body`, "[#post","#msg")
--- End code ---
--- Code: ---UPDATE `smf_messages`
SET `body` = replace(`body`, "',index.php?page=Thread&postID=","xxxxxxxxx")
--- End code ---
I don't know how to get the id_topic for xxxxxxxxx
H:
zeitwort, do you still want help with this? :)
zeitwort:
Of course - I would be very happy if you could help me. :D
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version