Commit Graph

5133 Commits

Author SHA1 Message Date
Master3395
f36beb4f9b Refactor CyberPanel installation logic to streamline PHP version handling
- Removed local installation function in favor of a direct installation approach.
- Updated installation script to prioritize the development branch for downloading CyberPanel, with a fallback to stable if unavailable.
- Adjusted PHP version lists across various scripts to exclude PHP 8.6 and ensure compatibility with existing versions.
- Enhanced error handling and feedback during installation to improve user experience.
2025-10-16 22:34:18 +02:00
Master3395
8a2e96a656 Enhance PHP support in installation and management scripts
- Added installation logic for PHP 8.6 in the install script, ensuring compatibility with various distributions.
- Updated PHP version lists in the PHPManager to include PHP 8.6 for system checks and fallbacks.
- Modified phpUtilities to recognize PHP 8.6 for CentOS and Ubuntu.
- Adjusted upgrade script to support PHP 8.6 for AlmaLinux 8+ compatibility.
- Revised symlink setup logic to prioritize PHP 8.6 alongside other versions.
2025-10-16 22:26:33 +02:00
Master3395
3ba8148018 Merge pull request #1582 from usmannasir/revert-1579-v2.5.5-dev
Revert "Enhance OS detection and support for AlmaLinux 10 and additional Ubun…"
2025-10-09 23:05:28 +02:00
Master3395
f9248370a0 Revert "Enhance OS detection and support for AlmaLinux 10 and additional Ubun…" 2025-10-09 23:05:16 +02:00
Master3395
ac1dadd397 Merge pull request #1581 from master3395/v2.5.5-dev
V2.5.5 dev
2025-10-09 23:01:57 +02:00
Master3395
fd5a478f6a Merge branch 'usmannasir:v2.5.5-dev' into v2.5.5-dev 2025-10-09 23:01:33 +02:00
Master3395
cf23e0f0ec Merge branch 'v2.5.5-dev' of https://github.com/master3395/cyberpanel into v2.5.5-dev 2025-10-09 23:00:46 +02:00
Master3395
fbaac14a66 Update CyberPanel installation script to prioritize stable branch
- Changed the default installer URL to the stable branch, with an option to use the development branch if BRANCH_NAME is set to v2.5.5-dev.
- Enhanced the logic to check for the availability of the development branch before falling back to stable.
- Updated the archive URL selection based on the chosen branch to ensure correct installation files are downloaded.
- Improved feedback messages to clarify which branch is being used during installation.
2025-10-09 23:00:45 +02:00
Master3395
9770102cab Merge pull request #1580 from master3395/v2.5.5-dev
V2.5.5 dev
2025-10-09 22:46:30 +02:00
Master3395
3ef0ba0bc0 Merge branch 'usmannasir:v2.5.5-dev' into v2.5.5-dev 2025-10-09 22:45:56 +02:00
Master3395
e902124923 Add local installation support for CyberPanel
- Introduced a new function to install CyberPanel from a local repository if installation files are available.
- Updated the installation flow to prioritize local installation before falling back to the direct download method.
- Enhanced error handling to provide clearer feedback if local installation files are not found.
- Adjusted the installer script to include branch specification for better version control during installation.
2025-10-09 22:44:31 +02:00
Master3395
5163ec8046 Merge pull request #1579 from master3395/v2.5.5-dev
Enhance OS detection and support for AlmaLinux 10 and additional Ubun…
2025-10-09 22:09:41 +02:00
Master3395
c9aa62f470 Enhance OS detection and support for AlmaLinux 10 and additional Ubuntu versions
- Added detection for AlmaLinux 10 and updated package manager settings accordingly.
- Included support for Ubuntu versions 25.10, 25.04, and 22.04.5 in the OS detection logic.
- Updated error messages and supported OS lists to reflect the new additions.
- Improved compatibility checks and installation scripts for comprehensive support across the newly added OS versions.
2025-10-09 22:08:54 +02:00
usmannasir
d40129bfe0 Implement real-time disk usage updates with async background processing
This commit implements an improved version of PRs #1575 and #1576 from @bdgreenweb
with critical performance optimizations.

## Background
The original PRs (#1575, #1576) proposed real-time disk usage tracking for file
manager operations. While the feature was valuable for improving user awareness of
disk quotas, there were several concerns:

1. **Performance Impact**: Original implementation used synchronous `executioner()`
   calls that would block file operations until disk calculation completed
2. **Target Branch Issues**: PRs were submitted to the stable branch instead of
   development branch, which could introduce instability
3. **Blocking Operations**: Each file operation would wait for disk usage
   recalculation, potentially causing noticeable delays

## Implementation Changes

### filemanager/filemanager.py
- Added disk usage updates to 9 file operation methods:
  - createNewFile() - After file creation
  - createNewFolder() - After folder creation
  - deleteFolderOrFile() - After deletion (both permanent and trash)
  - restore() - After restoring from trash
  - copy() - After copying files/folders
  - move() - After moving files/folders
  - upload() - After file uploads
  - extract() - After extracting archives
  - compress() - After creating archives

### plogical/IncScheduler.py
- Added CalculateAndUpdateDiskUsageDomain() function for domain-specific updates
- Added command-line argument handler for UpdateDiskUsageForceDomain
- Calculates disk usage for websites, email accounts, and bandwidth

## Key Improvements Over Original PRs

1. **Asynchronous Execution**: Uses `popenExecutioner()` instead of `executioner()`
   - File operations return immediately without waiting
   - Disk usage updates happen in background threads
   - Zero performance impact on user operations

2. **Selective Updates**: Only updates the specific domain affected by the operation
   rather than all domains system-wide

3. **Proper Branch Targeting**: Applied to development branch (v2.5.5-dev) for
   proper testing before stable release

## Benefits
- Real-time disk usage tracking as requested
- No performance degradation
- Users immediately aware of quota usage
- Prevents accidental quota violations
- Better than competitors (cPanel/DirectAdmin) in responsiveness

## Acknowledgments
Thank you @bdgreenweb for the original implementation idea and PRs #1575/#1576.
While we couldn't merge them directly due to the performance and stability concerns
mentioned above, your contribution highlighted an important feature gap. This
implementation preserves your core functionality while addressing the performance
concerns through asynchronous execution.

This will definitely help organizations track disk usage more effectively without
sacrificing file manager performance.
2025-10-08 13:40:16 +05:00
usmannasir
17dbcf95c5 Fix phpMyAdmin access issue for authenticated users
- Removed session validation check from phpmyadminsignin.php
- Removed PhpMyAdminAccessMiddleware from settings.py
- These changes were preventing access to phpMyAdmin even for logged-in users
- Reverts problematic authentication flow that was blocking legitimate access
2025-10-06 12:27:33 +05:00
usmannasir
031add54f8 Fix MySQL password file permissions for cyberpanel group access
- Set proper ownership (root:cyberpanel) and permissions (640) on /etc/cyberpanel/mysqlPassword
- Ensures cyberpanel group can read the password file to prevent permission denied errors
- Falls back to root-only permissions if cyberpanel group doesn't exist yet
- Also fixes permissions on existing password files during installation
2025-10-03 16:43:31 +05:00
usmannasir
36acc247a5 Move CyberPanel account setup earlier in installation process
Account creation now happens immediately after Python version check, before other system operations. This ensures system users are available for subsequent installation steps.
2025-10-03 15:55:40 +05:00
usmannasir
a338705c8b Fix ACME challenge path to use centralized Example directory
Update all vhost configurations to use /usr/local/lsws/Example/html/.well-known/acme-challenge
instead of domain-specific paths for better SSL certificate management
2025-10-03 15:50:29 +05:00
usmannasir
bee742c058 Improve installation flow and output organization
- Move status messages to appear after CyberPanel installer completes
- Silence verbose output during post-installation fixes
- Auto-answer OpenLiteSpeed password prompts to avoid manual input
- Simplify final status summary with cleaner formatting
- Fix static file permissions silently in background
- Show actual server IP in access details
- Reduce redundant success messages
- Make post-installation configurations less verbose

This creates a cleaner installation experience where the CyberPanel installer's summary appears first, followed by minimal post-installation configuration messages and a concise final status.
2025-10-01 13:48:00 +05:00
usmannasir
ab9e9a20ce Fix password handling in CyberPanel installer
- Capture actual generated password from CyberPanel installation output
- Save generated password to /root/.cyberpanel_password for persistence
- Use captured password for OpenLiteSpeed admin configuration
- Update status summary to show actual password instead of hardcoded value
- Fix service check to use lscpd (actual CyberPanel service) instead of non-existent 'cyberpanel' service
- Add lscpd service status check in installation summary

This ensures the password shown in the summary matches the actual CyberPanel admin password.
2025-10-01 13:18:17 +05:00
usmannasir
6de1d45355 Fix PowerDNS installation in v2.5.5-dev branch
Added missing PowerDNS configuration setup that was present in v2.4.4:
- Added installPowerDNSConfigurations() method to properly copy and configure pdns.conf
- Fixed PowerDNS installation to call configuration method after package installation
- Updated fixAndStartPowerDNS() to copy config template if missing
- Added proper MySQL password configuration for PowerDNS backend
- Added errno import for proper error handling

This fixes PowerDNS installation failures by ensuring the configuration file is properly created and configured with database credentials.
2025-10-01 12:31:01 +05:00
usmannasir
297364235f fix static file permissions 2025-10-01 11:46:58 +05:00
usmannasir
5669d19039 bug fix: login page issue 2025-10-01 03:18:39 +05:00
usmannasir
457d1255f8 bug fix: login page issue 2025-10-01 02:33:55 +05:00
usmannasir
fa0d3708ac find was deleting important env files 2025-10-01 01:28:40 +05:00
usmannasir
5f084b716e find was deleting important env files 2025-10-01 00:45:40 +05:00
usmannasir
12696e5097 bug fix: remove migrations commands 2025-10-01 00:20:05 +05:00
usmannasir
5c8d219ae7 bug fix: remove migrations commands 2025-09-30 23:46:10 +05:00
usmannasir
58749118ad find was deleting important env files 2025-09-30 16:27:14 +05:00
usmannasir
2325b8c0e1 bug fix: migrations issue 2025-09-30 16:18:10 +05:00
usmannasir
d99b013d0e bug fix: quote errors 2025-09-30 15:56:12 +05:00
usmannasir
867b9836bb bug fix: quote errors 2025-09-30 12:31:09 +05:00
usmannasir
d3a420120b bug fix: 2025-09-30 12:24:33 +05:00
usmannasir
ae9b954243 bug fix: api 2025-09-30 00:12:48 +05:00
usmannasir
3336aab376 bug fix: remove troubling migration file 2025-09-29 14:57:29 +05:00
usmannasir
e8a65566f8 bug fixes to isntall code 2025-09-29 12:42:27 +05:00
usmannasir
a178efb4d4 fix: Comprehensive MariaDB socket authentication support
- Add execute_mysql_command() helper in install.py for robust auth fallback
- Update mysqlUtilities.py with socket auth fallback for all operations:
  * Database creation
  * User creation
  * Privilege granting
  * Privilege flushing
- Fix PowerDNS database setup to use new authentication helper
- Improve cyberpanel user connection verification
- Add proper error handling and logging throughout

This ensures the installation works correctly when MariaDB is pre-installed
with socket authentication (common with dependency installations).

Fixes the 'Cannot update settings with empty passwords' installation failure.
2025-09-29 12:18:03 +05:00
usmannasir
70f13ed46a fix: Handle MariaDB socket authentication in changeMYSQLRootPassword()
- Add socket authentication support (sudo mysql/mariadb) for fresh MariaDB installs
- Fallback to traditional password-based authentication for existing installs
- Improve error handling with subprocess.run() and proper timeouts
- Add detailed logging to show which authentication method succeeded
- Graceful degradation when all methods fail
- Fixes installation failure when MariaDB is pre-installed as dependency

Resolves issue where installation fails with 'Cannot update settings with empty passwords'
when MariaDB gets installed during dependency phase with socket authentication.
2025-09-28 13:19:30 +05:00
usmannasir
15e1aadd4d bug fix: cyberpanel db 2025-09-28 03:27:18 +05:00
usmannasir
2f2853bd86 bug fix: cyberpanel db 2025-09-28 03:07:06 +05:00
usmannasir
4b773630d9 bug fix: cyberpanel db 2025-09-28 02:50:33 +05:00
usmannasir
1b3b44316b bug fixes to isntall code 2025-09-28 02:00:25 +05:00
usmannasir
7110567c2b bug fixes to isntall code 2025-09-28 00:05:35 +05:00
usmannasir
5877be9f4e bug fix: circular import 2025-09-27 14:13:33 +05:00
usmannasir
5e28b4673f bug fix: circular import 2025-09-27 13:38:57 +05:00
usmannasir
6c5e133295 add missing models to website.py 2025-09-27 13:09:20 +05:00
usmannasir
0d8527a82a bug fix: staging site issue 2025-09-27 11:41:16 +05:00
Master3395
d3538d65c1 Merge pull request #1569 from master3395/v2.5.5-dev
V2.5.5 dev
2025-09-25 23:05:24 +02:00
Master3395
8c0587e53f Merge branch 'v2.5.5-dev' of https://github.com/master3395/cyberpanel into v2.5.5-dev 2025-09-25 23:04:57 +02:00
Master3395
3dffa9f09e Refactor CyberPanel installation and upgrade scripts for live progress monitoring
- Updated the installation and upgrade processes to provide live output monitoring instead of background execution.
- Enhanced logging by creating dedicated directories for installation and upgrade logs.
- Improved error handling to display relevant exit codes and log information upon failure.
- Removed deprecated progress tracking logic for a more streamlined user experience during installation and upgrades.
2025-09-25 23:04:55 +02:00