This commit is contained in:
Xes
2025-08-14 22:39:38 +02:00
parent 3641e93527
commit 5403f346e3
3370 changed files with 327179 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
/* For license terms, see /license.txt */
exit;
/**
* This script should be called by a properly set cron process on your server.
* For more information, check the installation guide in the documentation
* folder.
* Add your own executable scripts below the inclusion of notification.php
* @package chamilo.cron
*/
/**
* Settings that will influence the execution of the cron tasks
*/
//ini_set('max_execution_time',300); //authorize execution for up to 5 minutes
//ini_set('memory_limit','100M'); //authorize script to use up to 100M RAM
/**
* Included cron-ed tasks. You might want to turn error-logging off by
* commenting the first and last line of this section.
*/
define('CLI_SCRIPT', true); // for chamilo imported code
define('CHAMILO_INTERNAL', true);
error_log('[chamilo][cronjob] Starting cron jobs as process '.getmypid());
require_once(dirname(dirname(dirname(__DIR__))).'/main/cron/notification.php');
error_log('[chamilo][cronjob] Ending cron jobs of process '.getmypid());