Just Installed the latest MediaWiki 1.24.1. The below $wgPhpbbSSO was working in 1.23.x but after moving to 1.24 it requires the fully qualified Path for the wiki to load correctly. However even if the wiki loads I am still unable use the module, It logs me out of phpbb3 instead. Any updates to make this work?
#$wgPhpbbSSO_Forum_Location = './../phpBB3/'; //Using your absolute server path to this would be better; trailing slash required - e.g. /home/user/www/forum/
$wgPhpbbSSO_Forum_Location = '/var/www/phpBB3/';
require_once("$IP/extensions/phpbSSO/phpbSSO.php");
$wgAuth = new Auth_remoteuser();
function noLoginLogOUt(&$list) {
unset( $list['Userlogout'] );
unset( $list['Userlogin'] );
return true;
}
$wgHooks['SpecialPage_initList'][]='noLoginLogOUt';
Thanks