Aquesta pàgina forma part de la documentació de Moodle en català, tot i que no ha estat traduïda encara. Podeu contribuir obertament a les tasques de traducció. Podeu consultar la Guia d'edició de la documentació i també participar ens els debats del fòrum de traductors de la documentació a moodle.org

AuthMoodle: diferència entre les revisions

De MoodleDocs
Salta a:navegació, cerca
Línia 3: Línia 3:
* an extension of mediawiki's AuthPlugin class so that moodle users can sign in to a mediawiki with the same login/pw
* an extension of mediawiki's AuthPlugin class so that moodle users can sign in to a mediawiki with the same login/pw
* used in this https://docs.moodle.org mediawiki production site
* used in this https://docs.moodle.org mediawiki production site
* download from http://moodle.org/file.php/5/moddata/forum/366/196104/AuthMoodle.php
* first posted by Martin Dougiamas in april 2006 in http://moodle.org/mod/forum/post.php?reply=196104 as an attachment
* first posted by Martin Dougiamas in april 2006 in http://moodle.org/mod/forum/post.php?reply=196104 as an attachment
* for mediawiki 1.7, I had to change line 33 to '''includes/'''AuthPlugin.php
* for mediawiki 1.7, I had to change line 33 to '''includes/'''AuthPlugin.php

Revisió del 22:32, 8 ago 2006

AuthMoodle.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');