From 86c2d1eb412df50aaed2437776ff6ef33a93a777 Mon Sep 17 00:00:00 2001 From: PaulVua Date: Tue, 17 Feb 2026 12:33:41 +0100 Subject: [PATCH] Fix: Correct screen.py path in launcher.php for production environment --- html/launcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/launcher.php b/html/launcher.php index c1b5d21..1794f29 100755 --- a/html/launcher.php +++ b/html/launcher.php @@ -1756,7 +1756,7 @@ if ($type == "screen_control") { $action = $_GET['action']; if ($action == "start") { // Run as background process - $command = 'export DISPLAY=:0 && nohup /usr/bin/python3 /home/aircarto/nebuleair_pro_4g/screen_control/screen.py > /dev/null 2>&1 &'; + $command = 'export DISPLAY=:0 && nohup /usr/bin/python3 /var/www/nebuleair_pro_4g/screen_control/screen.py > /dev/null 2>&1 &'; shell_exec($command); echo "Started"; } elseif ($action == "stop") {