by axew3 » Wed Mar 24, 2021 5:47 pm
Hello! Delay ... My pc crashed/stopped 2 days ago, so i had to reinstall completely OS, email, sql, php etc etc new setup. SO tired! It is a pain in the a*s to setup all again into a new laptop. I'm almost ready, 3 4 hours max of crazy configurations.
If the problem come out due to login into phpBB and then coming in wp the issue you describe happen, it is because ... maybe:
Code: Select all
public static function phpbb_update_profile($user_id, $old_user_data) {
into file:
class.wp.w3all-phpbb.php
where this line:
Code: Select all
$phpbb_user_type = ( empty($wpu->roles) ) ? '1' : '0';
change into:
(for the moment, it will be fixed all about this aspect on next 2.4.5 where will not happen any deactivation, in any case)
this should be the line of code that cause the issue.
Can you confirm?
Hello! Delay ... My pc crashed/stopped 2 days ago, so i had to reinstall completely OS, email, sql, php etc etc new setup. SO tired! It is a pain in the a*s to setup all again into a new laptop. I'm almost ready, 3 4 hours max of crazy configurations.
If the problem come out due to login into phpBB and then coming in wp the issue you describe happen, it is because ... maybe:
[code]public static function phpbb_update_profile($user_id, $old_user_data) {[/code]
into file:
[i]class.wp.w3all-phpbb.php[/i]
where this line:
[code]$phpbb_user_type = ( empty($wpu->roles) ) ? '1' : '0';[/code]
change into:
[code]$phpbb_user_type = 0;[/code]
(for the moment, it will be fixed all about this aspect on next 2.4.5 where will not happen any deactivation, in any case)
this should be the line of code that cause the issue.
Can you confirm?