I think the cause is the mediawiki 1.42.1 wants a composer2 meanwhile the extension is built with composer1.
Is there anybody out there that knows how to procede ?
I think the cause is the mediawiki 1.42.1 wants a composer2 meanwhile the extension is built with composer1.
Is there anybody out there that knows how to procede ?
I solved the problem replacing Auth_remoteuser with the following couple of extensions PluggableAuth and AuthRemoteUser:
In LocalSettings.php:
wfLoadExtension( 'PluggableAuth' );
wfLoadExtension( 'AuthRemoteUser' );
$wgPluggableAuth_EnableAutoLogin = true;