From e4a06a8aaffb084dcc5afd326fdcc39a1f2e4de0 Mon Sep 17 00:00:00 2001 From: usmannasir Date: Wed, 5 Nov 2025 05:56:27 +0500 Subject: [PATCH] Fix custom module download URL Correct the module URL to https://cyberpanel.net/cyberpanel_ols_x86_64.so --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index 122f636d0..8b8ccd9d6 100644 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -254,7 +254,7 @@ class InstallCyberPanel: # URLs for custom binaries OLS_BINARY_URL = "https://cyberpanel.net/downloads/openlitespeed-phpconfig-x86_64" - MODULE_URL = "https://cyberpanel.net/downloads/cyberpanel_ols_x86_64.so" + 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"