hello! In this plugin we use only code that run in WP, no way to use phpBB functions. We can reproduce by the way anything on WP side.
On old versions of the plugin in fact, the logout widget link was pointing to phpBB logout not wp logout.
The trick is just to append phpbb session to an url that point to phpBB logout.
I see that you have cookie .thetopfew.com, i should test the thing to understand why the loop about cookie that should be the couse due to cookie problem, but you can try this?
Open
wp_w3all.php file
search for this code
Code: Select all
$useragent = (!empty($_SERVER['HTTP_USER_AGENT'])) ? $_SERVER['HTTP_USER_AGENT'] : 'unknown';
immediately after, add this:
Code: Select all
$w3cookie_domain = '.thetopfew.com';
OR
Code: Select all
$w3cookie_domain = 'thetopfew.com';
without point at begin.
try to logout and re-login.
hello! In this plugin we use only code that run in WP, no way to use phpBB functions. We can reproduce by the way anything on WP side.
On old versions of the plugin in fact, the logout widget link was pointing to phpBB logout not wp logout.
The trick is just to append phpbb session to an url that point to phpBB logout.
I see that you have cookie .thetopfew.com, i should test the thing to understand why the loop about cookie that should be the couse due to cookie problem, but you can try this?
Open [b]wp_w3all.php[/b] file
search for this code
[code]$useragent = (!empty($_SERVER['HTTP_USER_AGENT'])) ? $_SERVER['HTTP_USER_AGENT'] : 'unknown';[/code]
immediately after, add this:
[code]$w3cookie_domain = '.thetopfew.com';[/code]
[b]OR[/b]
[code]$w3cookie_domain = 'thetopfew.com';[/code]
without point at begin.
try to logout and re-login.