3 /* cron script to perform all the periodic search tasks
6 * updates the index by pruning deleted documents
9 * updates document info in the index if the document has been modified since indexing
12 * adds documents created since the last index run
15 if (!defined('MOODLE_INTERNAL')) {
16 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
19 require_once("$CFG->dirroot/search/lib.php");
21 if (!search_check_php5()) {
22 $phpversion = phpversion();
23 mtrace("Sorry, cannot cron global search as it requires PHP 5.0.0 or later (currently using version $phpversion)");
25 else if (empty($CFG->enableglobalsearch
)) {
26 mtrace('Global searching is not enabled. Nothing performed by search.');
29 include("{$CFG->dirroot}/search/cron_php5.php");