You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: interface/web/sites/lib/lang/de_cron.lng
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,4 +20,5 @@ $wb['command_error_format'] = 'Das Format für den Befehl ist nicht korrekt. Bea
20
20
$wb['unknown_fieldtype_error'] = 'Es wurde ein unbekanntes Feld verwendet.';
21
21
$wb['server_id_error_empty'] = 'Die Server-ID ist leer.';
22
22
$wb['command_hint_txt'] = 'z. B. /var/www/clients/clientX/webY/myscript.sh oder http://www.mydomain.com/path/script.php. Der Platzhalter [web_root] wird durch /var/www/clients/clientX/webY/web ersetzt.';
Copy file name to clipboardExpand all lines: interface/web/sites/lib/lang/en_cron.lng
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,4 +20,5 @@ $wb['command_error_format'] = 'Invalid command format. Please note that in case
20
20
$wb['unknown_fieldtype_error'] = 'An unknown field type has been used.';
21
21
$wb['server_id_error_empty'] = 'The server ID is empty.';
22
22
$wb['command_hint_txt'] = 'e.g. /var/www/clients/clientX/webY/myscript.sh or http://www.mydomain.com/path/script.php, you can use [web_root] placeholder that is replaced by /var/www/clients/clientX/webY/web.';
Copy file name to clipboardExpand all lines: server/plugins-available/cron_plugin.inc.php
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -193,17 +193,26 @@ function _write_crontab() {
193
193
$chr_cmd_count = 0;
194
194
195
195
//* read all active cron jobs from database and write them to file
196
-
$cron_jobs = $app->db->queryAllRecords("SELECT c.`run_min`, c.`run_hour`, c.`run_mday`, c.`run_month`, c.`run_wday`, c.`command`, c.`type`, `web_domain`.`domain` as `domain` FROM `cron` as c INNER JOIN `web_domain` ON `web_domain`.`domain_id` = c.`parent_domain_id` WHERE c.`parent_domain_id` = ".intval($this->parent_domain["domain_id"]) . " AND c.`active` = 'y'");
196
+
$cron_jobs = $app->db->queryAllRecords("SELECT c.`run_min`, c.`run_hour`, c.`run_mday`, c.`run_month`, c.`run_wday`, c.`command`, c.`type`, c.`log`, `web_domain`.`domain` as `domain` FROM `cron` as c INNER JOIN `web_domain` ON `web_domain`.`domain_id` = c.`parent_domain_id` WHERE c.`parent_domain_id` = ".intval($this->parent_domain["domain_id"]) . " AND c.`active` = 'y'");
0 commit comments