Simple Machines Community Forum

SMF Support => Converting to SMF => phpBB => Topic started by: swatt on July 26, 2009, 08:47:55 AM

Title: Converter phpBB 2.023 to SMF 2?
Post by: swatt on July 26, 2009, 08:47:55 AM
Hi

How can I convert a phpBB 2.023 Forum to SMF 2.0 RC1.2?
I can't found a correct converter in http://download.simplemachines.org/?converters
Title: Re: Converter phpBB 2.023 to SMF 2?
Post by: tyty1234 on July 27, 2009, 03:13:43 PM
I think this (http://download.simplemachines.org/?converters;software=phpbb2) is for all phpBB2 versions, but if you do download the converter, please be aware that it is still in development.
Title: Re: Converter phpBB 2.023 to SMF 2?
Post by: H on July 31, 2009, 10:53:55 AM
Indeed. There is a 2.0 converter listed on that page. If you need any help you can checkout Converting to SMF (http://docs.simplemachines.org/index.php?board=4.0;sort=subject)
Title: Re: Converter phpBB 2.023 to SMF 2?
Post by: swatt on August 02, 2009, 05:13:48 AM
Yes... but on July 26. there was not here  ;D

But I have another problem... I receive an error, I have already post it: http://www.simplemachines.org/community/index.php?topic=328099.msg2187966#msg2187966 (http://www.simplemachines.org/community/index.php?topic=328099.msg2187966#msg2187966)

QuoteConverting members...Wrong value type sent to the database. Integer expected. (id_group)
Title: Re: Converter phpBB 2.023 to SMF 2?
Post by: ThorstenE on August 02, 2009, 08:10:14 AM
related to this post:
http://www.simplemachines.org/community/index.php?topic=328099.msg2187966#msg2187966


in phpbb2_to_smf.sql find:
IF(u.user_level = 1, 1, IFNULL(mg.id_group, 0)) AS id_group,
replace it with:
IF(u.user_level = 1, 1, 0) AS id_group,