Hello Ryan et al,
I have Mediawiki's normal account creation and login functions working. I am back on the trail of integrating Windows IIS authentication.
I have the the plugin installed and running without an error. I made the suggested modifications (below). Now, Mediawiki pages default to the "Login Required" prompt. From what I can tell, Auth_remote_user_hook() is never called.
Any suggestions on the next step?
Thanks,
J Wolfgang Goerlich
On 12/14/06, Lane, Ryan Ryan.Lane@ocean.navo.navy.mil wrote:
If you are feeling adventurous, you can fix the plugin yourself. The first thing I'd do would be to change:
global $wgExtensionFunctions; if (!isset($wgExtensionFunctions)) { $wgExtensionFunctions = array(); } else if (!is_array($wgExtensionFunctions)) { $wgExtensionFunctions = array( $wgExtensionFunctions ); } array_push($wgExtensionFunctions, 'Auth_remote_user_hook');
To:
$wgHooks['AutoAuthenticate'][] = 'Auth_remote_user_hook';