A redirect loop on CloudPanel's login page after an update usually indicates an issue with the session, cookies, firewall, or incorrect SSL configurations.
Here's how you can quickly fix this issue:
Step 1: Clear Browser Cache and Cookies
First, ensure it's not a browser caching issue:
- Clear your browser's cache and cookies.
- Restart your browser and retry accessing CloudPanel.
Step 2: Restart CloudPanel Service
Log in via SSH and restart CloudPanel to resolve temporary service issues:
Code:
sudo systemctl restart cloudpanel
Additionally, restart PHP-FPM to ensure backend stability:
Code:
sudo systemctl restart php8.3-fpm # replace '8.3' with your PHP version
Step 3: Check...