I was not aware that there was a version 1.0.12, but I can safely say that this convertor will NOT work with SMF versions 1.0.x. The databases are different. You should upgrade your SMF to the latest version before converting or you could use the SMF 1.0.x to phpBB2 convertor, then convert to phpBB3.gsbe wrote:I'll be experimenting with this shortly. Are there any forseeable problems with using this converter for SMF 1.0.12 or even 1.1.4? Thanks for your work here!
Good to know, thanksD¡cky wrote:but I can safely say that this convertor will NOT work with SMF versions 1.0.x.
the PHP Manual wrote: int strpos ( string $haystack, mixed $needle [, int $offset] )
The fix for this: Find in /install/convertors/functions_smf11.phpAJD's Mind wrote: int strpos ( string $needle, mixed $haystack )
Code: Select all
// takes SMF rank image, and removes everything before and including the sharp.
function smf_rank_image($rank_image)
{
return substr($rank_image, (strpos('#', $rank_image) + 1));
}
Code: Select all
// takes SMF rank image, and removes everything before and including the sharp.
function smf_rank_image($rank_image)
{
return substr($rank_image, (strpos($rank_image, '#') + 1));
}
You gave me the phpBB version, I need to know the SMF version.A_Jelly_Doughnut wrote:1) What version of SMF you are running (exactly, please)
That script is for phpBB2, so that explains why it didn't get you any results on phpBB3.2. viewtopic.php?t=232010 - not that this really matters at all, its just a toolkit.
user_permissions will be filled upon the user logging in for the first time. This is intendedTo clear up some things I reported. I changed the ID on my personal username on the forum to #3, still no import.
I still cannot login with the admin username for the life of me. It is suppose to be user_type = 1, correct? All my imported accounts are user_type = 0. user_permissions are all [BLOB - 0 B]. As for the accounts that aren't importing, I don't have the slightest why some aren't importing and most are...