diff --git a/cyberpanel.sh b/cyberpanel.sh index 39f0c3734..d90a7c028 100644 --- a/cyberpanel.sh +++ b/cyberpanel.sh @@ -972,7 +972,6 @@ if [[ $DEV == "ON" ]] ; then source /usr/local/CyberPanel/bin/activate wget -O requirements.txt https://raw.githubusercontent.com/usmannasir/cyberpanel/$BRANCH_NAME/requirments.txt pip install --ignore-installed -r requirements.txt - systemctl restart lscpd cd - fi diff --git a/install/install.py b/install/install.py index 124b8c7f2..efad4f33b 100755 --- a/install/install.py +++ b/install/install.py @@ -1425,7 +1425,7 @@ imap_folder_list_limit = 0 try: os.remove("/usr/local/lscp/fcgi-bin/lsphp") - shutil.copy("/usr/local/lsws/lsphp70/bin/lsphp", "/usr/local/lscp/fcgi-bin/lsphp") + shutil.copy("/usr/local/lsws/lsphp71/bin/lsphp", "/usr/local/lscp/fcgi-bin/lsphp") except: pass diff --git a/managePHP/phpManager.py b/managePHP/phpManager.py index 3e88cfd5e..53aabf04a 100755 --- a/managePHP/phpManager.py +++ b/managePHP/phpManager.py @@ -14,7 +14,7 @@ class PHPManager: distro = ProcessUtilities.decideDistro() if distro == ProcessUtilities.centos: if distro == ProcessUtilities.cent8: - return ['PHP 7.0', 'PHP 7.1', 'PHP 7.2', 'PHP 7.3'] + return ['PHP 7.1', 'PHP 7.2', 'PHP 7.3'] return ['PHP 5.3', 'PHP 5.4', 'PHP 5.5', 'PHP 5.6', 'PHP 7.0', 'PHP 7.1', 'PHP 7.2', 'PHP 7.3'] else: return ['PHP 7.0', 'PHP 7.1', 'PHP 7.2', 'PHP 7.3']