Added passenger support. Partialy 1
This commit is contained in:
@@ -183,6 +183,14 @@ exec(HESTIA_CMD . "v-list-web-stats json", $output, $return_var);
|
||||
$stats = json_decode(implode("", $output), true);
|
||||
unset($output);
|
||||
|
||||
//Check if passenger enabled
|
||||
exec(HESTIA_CMD . "v-ext-modules state passenger_manager json", $output, $return_var);
|
||||
$check_passenger_enabled = json_decode(implode("", $output), true);
|
||||
if (($return_var == 0) && (!empty($check_passenger_enabled)) && ($check_passenger_enabled[0]["STATE"] == "enabled")){
|
||||
//TODO
|
||||
}
|
||||
unset($output);
|
||||
|
||||
// Check POST request
|
||||
if (!empty($_POST["save"])) {
|
||||
$v_domain = $_POST["v_domain"];
|
||||
|
||||
Reference in New Issue
Block a user