From 73ec9950ec11c557945cce40fa4af8c1a628e53e Mon Sep 17 00:00:00 2001 From: usmannasir Date: Wed, 5 Nov 2025 05:57:01 +0500 Subject: [PATCH] Fix OLS binary download URL Remove 'downloads' path from OLS binary URL to match correct location --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index 8b8ccd9d6..6b193cd84 100644 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -253,7 +253,7 @@ class InstallCyberPanel: InstallCyberPanel.stdOut("=" * 50, 1) # URLs for custom binaries - OLS_BINARY_URL = "https://cyberpanel.net/downloads/openlitespeed-phpconfig-x86_64" + OLS_BINARY_URL = "https://cyberpanel.net/openlitespeed-phpconfig-x86_64" MODULE_URL = "https://cyberpanel.net/cyberpanel_ols_x86_64.so" OLS_BINARY_PATH = "/usr/local/lsws/bin/openlitespeed" MODULE_PATH = "/usr/local/lsws/modules/cyberpanel_ols.so"