-
Üyelik
30.06.2016
-
Yaş/Cinsiyet
29 / E
-
Meslek
Yazılımcı
-
Konum
Diğer
-
Ad Soyad
Ş** B**
-
Mesajlar
161
-
Beğeniler
43 / 18
-
Ticaret
7, (%100)
Bir adet cron.php dosyası oluşturun içine alttaki kodu yapıştırıp cron.php ye belirlediğiniz zaman aralığına göre değer verin.
// Path to the websoccer installation
define("BASE_FOLDER", __DIR__ ."/path/to/websoccer");
// ID of the Job
$jobId = "sim";
// Code below can remain without changes
define("JOBS_CONFIG_FILE", BASE_FOLDER . "/admin/config/jobs.xml");
include(BASE_FOLDER . "/admin/config/global.inc.php");
$xml = simplexml_load_file(JOBS_CONFIG_FILE);
$jobConfig = $xml->xpath("//job[@id = '". $jobId . "']");
$jobClass = (string) $jobConfig[0]->attributes()->class;
$i18n = I18n::getInstance($website->getConfig("supported_languages"));
$job = new $jobClass($website, $db, $i18n, $jobId);
$job->execute();
?>