File Manager

Hostinger VPS Panel

$roots = [ "subdominios" => "/var/www/subdominios/", "zona10.shop" => "/var/www/zona10.shop/public_html/", "yhana.cloud" => "/var/www/yhana.cloud/" ]; if (!isset($_SESSION["selected_root"])) { $_SESSION["selected_root"] = "subdominios"; } if (isset($_GET["switch_root"]) && array_key_exists($_GET["switch_root"], $roots)) { $_SESSION["selected_root"] = $_GET["switch_root"]; header("Location: index.php"); exit; } $base_path = $roots[$_SESSION["selected_root"]];