Actually, I looked at the code and realized it was looking for an LdapAutoAuthentication class and it wasn't defined anywhere. I was able to find it in your SVN repository, but I don't see it linked or mentioned on the extension's web page. Anyway, I copied that into my extensions directory and added this line below the LdapAuthentication include in the LocalSettings.php file:
require_once('extensions/LdapAutoAuthentication.php');
I don't get the error now, but now my browser gets stuck trying to load the page and nothing happens. I've checked the apache log on the server and it isn't showing anything from the attempted connect.
I also tried applying your patches to see if that helped and it didn't seem to change anything. The browser still just keeps trying to load and finally gives up after 30 or 40 seconds.
Any suggestions?
Thanks, Ken
On Tue, Feb 3, 2009 at 5:28 PM, Lane, Ryan Ryan.Lane@ocean.navo.navy.milwrote:
Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'LdapAutoAuthentication::Authenticate' was given in /srv/web/mediawiki-1.13.3/includes/Hooks.php on line 117
Internal error
I could have sworn I tested this in 1.13 and it was working properly, but I may have something messed up in the authenticate() function. Try this:
--- LdapAutoAuthentication.php.old 2009-02-03 17:20:13.460951000 -0600 +++ LdapAutoAuthentication.php 2009-02-03 17:25:08.974031000 -0600 @@ -7,7 +7,16 @@ * * @access public */
static function Authenticate( $user, &$result ) {
static function AuthenticateAfterLoad( $user ) {
return LdapAutoAuthentication::Authenticate( true, $user
);
}
/**
* Does the web server authentication piece of the LDAP plugin.
*
* @access public
*/
static function Authenticate( &$result, $user ) { global $wgUser; global $wgAuth; global $wgLDAPAutoAuthUsername;
--- LdapAuthentication.php.old 2009-02-03 17:25:44.236929000 -0600 +++ LdapAuthentication.php 2009-02-03 17:26:13.602250000 -0600 @@ -1741,7 +1741,7 @@ if ( version_compare( $wgVersion, '1.14.0', '<' ) ) { $wgHooks['UserLoadFromSession'][] = 'LdapAutoAuthentication::Authenticate'; } else {
$wgHooks['UserLoadAfterLoadFromSession'][] =
'LdapAutoAuthentication::Authenticate';
$wgHooks['UserLoadAfterLoadFromSession'][] =
'LdapAutoAuthentication::AuthenticateAfterLoad'; } $wgHooks['PersonalUrls'][] = 'LdapAutoAuthentication::NoLogout'; /* Disallow logout link */ }
V/r,
Ryan Lane
Mediawiki-enterprise mailing list Mediawiki-enterprise@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-enterprise