mirror of
https://github.com/moodle/moodle.git
synced 2025-02-14 04:45:29 +01:00
They now share most of the code again, this time via subclassing, and they share some code with enrol/ldap. They have also gained some features and a few fixes.
44 lines
1.4 KiB
PHP
Executable File
44 lines
1.4 KiB
PHP
Executable File
<?php
|
|
/** auth_ldap_sync_users.php
|
|
*
|
|
* This script is meant to be called from a cronjob to sync moodle with the LDAP
|
|
* backend in those setups where the LDAP backend acts as 'master'.
|
|
*
|
|
* Recommended cron entry:
|
|
* # 5 minutes past 4am
|
|
* 5 4 * * * /usr/bin/php5 -c /etc/php5/cli/php.ini /var/www/moodle/auth/ldap/auth_ldap_sync_users.php
|
|
*
|
|
* Notes:
|
|
* - If you have a large number of users, you may want to raise the memory limits
|
|
* by passing -d momory_limit=256M
|
|
* - For debugging & better logging, you are encouraged to use in the command line:
|
|
* -d log_errors=1 -d error_reporting=E_ALL -d display_errors=0 -d html_errors=0
|
|
*
|
|
* Performance notes:
|
|
* We have optimized it as best as we could for Postgres and mySQL, with 27K students
|
|
* we have seen this take 10 minutes.
|
|
*
|
|
*/
|
|
|
|
if (isset($_SERVER['REMOTE_ADDR'])) {
|
|
error_log('auth/ldap/auth_ldap_sync_users.php can not be called from web server!');
|
|
echo 'auth/ldap/auth_ldap_sync_users.php can not be called from web server!';
|
|
exit;
|
|
}
|
|
|
|
require_once(dirname(dirname(dirname(__FILE__))).'/config.php'); // global moodle config file.
|
|
|
|
require_once($CFG->dirroot.'/course/lib.php');
|
|
|
|
// Ensure errors are well explained
|
|
$CFG->debug = DEBUG_NORMAL;
|
|
|
|
if (!is_enabled_auth('ldap')) {
|
|
error_log('[AUTH LDAP] '.get_string('pluginnotenabled', 'auth_ldap'));
|
|
die;
|
|
}
|
|
|
|
$ldapauth = get_auth_plugin('ldap');
|
|
$ldapauth->sync_users(true);
|
|
|