golden hour
/opt/alt/alt-php-config
⬆️ Go Up
Upload
File/Folder
Size
Actions
__pycache__
-
Del
OK
alt-php-panel-configuration.py
8.53 KB
Del
OK
alt-php.cfg
292 B
Del
OK
detectcp.py
687 B
Del
OK
install_odbc
530 B
Del
OK
multiphp_reconfigure.py
7.7 KB
Del
OK
Edit: detectcp.py
#!/usr/bin/python3 # -*- mode:python; coding:utf-8; -*- import os def getCPName(): # cPanel if os.path.isfile('/usr/local/cpanel/cpanel'): return "cPanel" # DirectAdmin if os.path.isfile('/usr/local/directadmin/directadmin') or \ os.path.isfile('/usr/local/directadmin/custombuild/build'): return "DirectAdmin" # InterWorx if os.path.isfile('/usr/local/interworx/iworx.ini'): return "InterWorx" # ISPManager if os.path.isfile('/usr/local/ispmgr/bin/ispmgr'): return "ISPManager" # Plesk if os.path.isfile('/usr/local/psa/version'): return "Plesk" # Unknown panel / No panel return "Unknown"
Save