Note: You are currently viewing documentation for Moodle 3.3. Up-to-date documentation for the latest stable version of Moodle is probably available here: AuthMoodle.

AuthMoodle

From MoodleDocs
Revision as of 22:27, 8 August 2006 by Bruno Vernier (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

AuthMoodle.php

  • an extension of mediawiki's AuthPlugin class so that moodle users can sign in to a mediawiki with the same login/pw
  • first posted by Martin Dougiamas in april 2006 in http://moodle.org/mod/forum/post.php?reply=220741 as an attachment
  • for mediawiki 1.7, I had to change line 33 to includes/AuthPlugin.php

quoting Martin:

Save it in extensions/AuthMoodle.php.
Then you just put this in LocalSettings.php:
require_once( 'extensions/AuthMoodle.php' );
$wgAuth = new AuthMoodle();
$wgAuth->setAuthMoodleTablePrefix();
$wgAuth->setAuthMoodleDBServer('yoursite.org');
$wgAuth->setAuthMoodleDBName('yourdb');
$wgAuth->setAuthMoodleUser('yourdbuser');
$wgAuth->setAuthMoodlePassword('yourdbpass');