mirror of
https://github.com/moodle/moodle.git
synced 2025-04-22 17:02:03 +02:00
If the user specifies the same LDAP search context more than once, when we sync users we retrieve the same set of users twice. When we try to insert the "duplicated" user in the temp table again, the db barfs and the db layer aborts the whole transaction. So we try to detect and remove duplicates. This is a bit tricky (LDAP is such a complex and wonderful protocol) as the contexts are distinguished names and the matching/comparison rules are complex. But assuming that we only use the attribute types used in 99.999% of the distinguished names used for contexts out there (that is: dc, ou, cn, o, l and c), and also assuming that the user is not using different encodings/escapings for the same context, we can lower case the contexts to compare them (and remove duplicates). This is safe according to RFC-4517 (section 4.2.15. distinguishedNameMatch) and RFC-4519 (where the EQUAILITY property is defined for the different user application attribute types). This shouldn't break any configuration that wasn't broken before :) Signed-off-by: Iñaki Arenaza <iarenaza@mondragon.edu>
…
…
QUICK INSTALL ============= For the impatient, here is a basic outline of the installation process, which normally takes me only a few minutes: 1) Move the Moodle files into your web directory. 2) Create a single database for Moodle to store all it's tables in (or choose an existing database). 3) Visit your Moodle site with a browser, you should be taken to the install.php script, which will lead you through creating a config.php file and then setting up Moodle, creating an admin account etc. 4) Set up a cron task to call the file admin/cron.php every five minutes or so. For more information, see the INSTALL DOCUMENTATION: http://docs.moodle.org/en/Installing_Moodle Good luck and have fun! Martin Dougiamas, Lead Developer
Description
Languages
PHP
78.1%
JavaScript
14.6%
Gherkin
3.5%
CSS
1.7%
Mustache
1.6%
Other
0.4%