22 lines
722 B
PHP
Executable File
22 lines
722 B
PHP
Executable File
<?php
|
|
/**
|
|
* Script lancé toutes les minutes lançant différentes tâches planifiées.
|
|
*
|
|
**/
|
|
ini_set("display_errors",1);
|
|
|
|
set_time_limit(6000);
|
|
require_once(__DIR__."/../config/config.php");
|
|
require_once(BASE_REP."../config/config.perso.php");
|
|
require_once(BASE_REP."../config/url.page.php");
|
|
require_once(BASE_REP."../config/".SITE_LANG.".php");
|
|
require_once(BASE_REP."../divers/utilitaires.php");
|
|
|
|
if($page[2]!=AUTORISE_CRON)
|
|
{
|
|
$ip=getIp();
|
|
if((envoi_message(EMAIL_ADMIN,EMAIL_ADMIN,"[".SITE_NOM."] Alerte","Appel non autorisé aux tâches planifiées : ".$ip." ".AUTORISE_CRON))===false)
|
|
$ajout_journal=new journal_erreurs(array(__FILE__,__LINE__,ERREUR_EMAIL_ENVOI));
|
|
exit();
|
|
}
|
|
require_once("cron-index.php"); |