| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- use function Hestiacp\quoteshellarg\quoteshellarg;
- $TAB = "SERVER";
- // Main include
- include $_SERVER["DOCUMENT_ROOT"] . "/inc/main.php";
- // Check user
- if ($_SESSION["userContext"] !== "admin" && $user_plain === "$ROOT_USER") {
- header("Location: /list/user");
- exit();
- }
- // Check POST request
- if (!empty($_POST["save"])) {
- if (!empty($_POST["v_config"])) {
- $fp = tmpfile();
- $new_conf = stream_get_meta_data($fp)["uri"];
- $config = str_replace("\r\n", "\n", $_POST["v_config"]);
- if (!str_ends_with($config, "\n")) {
- $config .= "\n";
- }
- fwrite($fp, $config);
- exec(
- HESTIA_CMD .
- "v-change-sys-service-config " .
- quoteshellarg($new_conf) .
- " hestiaweb yes",
- $output,
- $return_var,
- );
- check_return_code($return_var, $output);
- unset($output);
- fclose($fp);
- }
- }
- $v_config_path = "/var/spool/cron/crontabs/hestiaweb";
- $v_service_name = _("Panel Cronjobs");
- // Read config
- $v_config = shell_exec(HESTIA_CMD . "v-open-fs-config " . $v_config_path);
- // Render page
- render_page($user, $TAB, "edit_server_service");
- // Flush session messages
- unset($_SESSION["error_msg"]);
- unset($_SESSION["ok_msg"]);
|