Mh ... ok ... about log, the only way to check what's going on, is to aim to understand what happen and why.
Substantially, the file
class.wp.w3all-phpbb.php is the one where all rotate around.
The main function on this file is
private static function verify_phpbb_credentials(){
I've apply the suggested patch by jakub inside it, taking it for good, because redundant code:
file
class.wp.w3all-phpbb.php
lines 564,565,566
Code: Select all
// fix by Jakub
// wp_redirect( $redirect_to );
// exit();
another applied patch is where code
Code: Select all
// if needed, set inline this user: if user logout in phpBB (but still have valid cookie in WP) and relogin using another uname in phpBB, then come in WP, set it inline or admin bar will display previous user name until next page reload
$ck1 = wp_get_current_user();
if ( $ck1->ID > 1 && $ck1->user_login != $wp_user_data->user_login ){
wp_clear_auth_cookie();
wp_set_current_user( $wp_user_data->ID, $wp_user_data->user_login );
}
Have you download the file
class.wp.w3all-phpbb.php and substitute it?
The fix about admin can't access wp admin, isn't the patch suggested by jakub.
Download the file and substitute it or change the code where
// if needed, set inline this user: ...
in accord with the above if you have still not change it and you have not substitute the entire file, but just applied the single patch.
i will take a look into this to resolve definitively as soon with some other secondary bug and improvement and if you can help on it would be really appreciated. I have think that removing the admin from this second reported patched code above, (i resolved the problem on accessing wp admin for user with id1 in this way into a site) was fixing the issue in any case.
Let know!
Mh ... ok ... about log, the only way to check what's going on, is to aim to understand what happen and why.
Substantially, the file [i]class.wp.w3all-phpbb.php[/i] is the one where all rotate around.
The main function on this file is
[i]private static function verify_phpbb_credentials(){[/i]
I've apply the suggested patch by jakub inside it, taking it for good, because redundant code:
file
[i]class.wp.w3all-phpbb.php[/i]
lines 564,565,566
[code] // fix by Jakub
// wp_redirect( $redirect_to );
// exit();[/code]
another applied patch is where code
[code]// if needed, set inline this user: if user logout in phpBB (but still have valid cookie in WP) and relogin using another uname in phpBB, then come in WP, set it inline or admin bar will display previous user name until next page reload
$ck1 = wp_get_current_user();
if ( $ck1->ID > 1 && $ck1->user_login != $wp_user_data->user_login ){
wp_clear_auth_cookie();
wp_set_current_user( $wp_user_data->ID, $wp_user_data->user_login );
}[/code]
Have you download the file
[i]class.wp.w3all-phpbb.php[/i] and substitute it?
The fix about admin can't access wp admin, isn't the patch suggested by jakub.
Download the file and substitute it or change the code where
[i]// if needed, set inline this user: ...[/i]
in accord with the above if you have still not change it and you have not substitute the entire file, but just applied the single patch.
i will take a look into this to resolve definitively as soon with some other secondary bug and improvement and if you can help on it would be really appreciated. I have think that removing the admin from this second reported patched code above, (i resolved the problem on accessing wp admin for user with id1 in this way into a site) was fixing the issue in any case.
Let know!