Be sure and try the "resync" option/icon that exist per-form in the phpBB ACP Forums tab, too. The resync options on the phpBB ACP General tab do reset some things, but are not traversing into and re-calculating each forum.d-fruit wrote: Sun May 03, 2020 2:24 pm Update: From vBulletin 4.2.5 to phpBB 3.0.11 convert process looks like was successful, but theres something strange.
vBulletin have 8758 posts but phpBB have 8897; threads 1097 vs 1133; and users are same. No idea why, I did resync stats and posts in ACP, still same...
In phpBB, literal user ID 1 is actually the Anonymous/Guest user, and not any kind of actual user or admin. So you're not going to occupy user ID 1 on phpBB, if that's what it's been on vBulletin. User ID 2 is typically the first phpBB admin and "founder" account, although you can have as many admin and founder accounts as you want, and no rule or requirement that user ID 2 "must remain the founder."d-fruit wrote: Sun May 03, 2020 2:24 pm One more thing - my user ID is not 1, but last ID. Is somehow possible to change back to ID 1 safely? First ID was admin user that was created during default phpBB 3.0.11 install, but doesn't exist.
Code: Select all
/**
* Return correct user id value
* Everyone's id will be one higher to allow the guest/anonymous user to have a positive id as well
*/
function phpbb_user_id($user_id)
{
Code: Select all
if (!empty($config['increment_user_id']) && $user_id == 1)
{
return (int) $config['increment_user_id'];
}
Code: Select all
return (int) $user_id;
Code: Select all
return (int) $user_id + 100;
I'm not seeing any precedents we could easily follow to say "how should a converter like vBulletin be handled in phpBB 3.3.0." Its going to take someone who actually knows what was intended to illuminate that further; and that's not me. It seems like we should be able to declare the currently-stored "user_pass_convert = 1" user password hashes as simply a unique vBulletin-specific hash type, and provide a driver for that vBulletin-specific hash type under /phpbb/passwords/driver/.EA117 wrote: Mon May 04, 2020 1:49 pm I'm not sure where that auth method code needs to go on a phpBB 3.3.0 board. It will need some more research, and I continue looking at that this evening. Or maybe we'll luck out and someone who already knows will be able to chime in here.