Recent content by Rootali

  1. Rootali

    CloudPanel v2.5.2

    CloudPanel v2.5.2: MySQL 8.4 Support & Security Fixes CloudPanel v2.5.2 is now available with MySQL 8.4 support, new translations, bug fixes, and security updates. New Features New Translations Bug Fixes Security New Features MySQL 8.4 Support: CloudPanel now supports MySQL 8.4 with the...
  2. Rootali

    How to add a .immobilien Domain?

    Yes, sometimes there can be issues with DNS updates :) I'm glad the problem was resolved.
  3. Rootali

    How to add a .immobilien Domain?

    Hello, are you sure there are no issues with the DNS records? If you wish, please add the domain to the server and then check the DNS records. Can you obtain SSL? After adding it.
  4. Rootali

    How to add multiple users at once?

    Hi! @Teo Since CloudPanel doesn’t provide an official API, the best way to bulk-create subdomains, FTP accounts, and databases for students is to use an SSH script. You can maintain a student list in a file and loop through it to automate the setup. GUI roles are limited, so any custom...
  5. Rootali

    Help to custom error 404

    I don't think you understood me. Place the following code inside the vhost file and enter the address of your 404 page. That's all there is to it. error_page 404 /404.html; location = /404.html { root /var/www/html; internal; }
  6. Rootali

    Help to custom error 404

    Don’t edit /etc/nginx/sites-enabled/ because CloudPanel overwrites it. Instead, create /home/cloudpanel/htdocs/mydomain.com/nginx/custom.conf with your error_page settings, put custom-404.html in the public folder, and run systemctl reload nginx. or Or, alternatively, edit the vhost file in...
  7. Rootali

    Check that Varnish is working

    To test if Varnish is working, press F12 in your browser, go to Network tab, refresh the page, and look for “X-Varnish” or “Via: varnish” in the response headers - if you see these, Varnish is active.
  8. Rootali

    How to Uninstall CloudPanel on Ubuntu

    If you no longer need CloudPanel on your server, follow these streamlined steps to remove it completely from your system. 1. Backup Your Data Before making any major changes: Back up your web directories and configuration files Export your databases to a safe location 2. Stop the CloudPanel...
  9. Rootali

    Ubuntu’da CloudPanel Nasıl Kaldırılır

    Ubuntu’da CloudPanel Nasıl Kaldırılır? CloudPanel’i artık kullanmıyor musunuz? Aşağıdaki adımları takip ederek sisteminizden temiz bir şekilde kaldırabilirsiniz. Verilerinizi Yedekleyin Uninstall işlemine başlamadan önce: Web dizinlerinizi ve yapılandırma dosyalarınızı yedekleyin...
  10. Rootali

    PHP site using the wrong port

    {{{varnish_proxy_pass}} It's CloudPanel's automatic template variable and it still shows the old port 8080. When I change this line to proxy_pass http://127.0.0.1:8081 it redirects directly to 8081 and the problem is solved. Template variables sometimes don't update in CloudPanel, so it's...
  11. Rootali

    How to Safely Disable or Remove Unused PHP Versions Without Breaking CloudPanel?

    You can safely disable unused PHP-FPM versions in CloudPanel. Based on my testing, here's the safest approach: 1. Stop and disable the PHP-FPM services, but do not delete or rename the files: ```bash # For versions you're not using (e.g., PHP 7.1, 7.2, 7.3, 7.4): systemctl stop php7.1-fpm...
  12. Rootali

    My PrestaShop site sometimes goes down, Themeforest demo website not showing

    Hi! For the PrestaShop issue, restart both MySQL and PHP-FPM like this: sudo systemctl restart mysql sudo systemctl restart php8.1-fpm # change 8.1 to your PHP version For the iframe issue (Themeforest), check your Nginx config (usually in /etc/nginx/sites-available/) and comment out or remove...
  13. Rootali

    CloudPanel: The free, performance-focused server management solution

    CloudPanel is a modern, lightweight server control panel offering exceptional performance with minimal overhead. This free, open-source solution delivers intuitive web-based server management with an obsessive focus on simplicity and performance optimization. Developed by MGT-COMMERCE GmbH...
  14. Rootali

    MariaDB won't start after CloudPanel install – aria_log_control & ibdata1 lock issue

    Step-by-step solution (MariaDB fails due to file locks) Kill all MariaDB/MySQL related processes: sudo pkill -f mariadbd sudo pkill -f mysqld sudo pkill -f mysql Make sure everything is cleaned up: ps aux | grep -i mysql Start MariaDB cleanly: sudo systemctl start mariadb Check its status...
  15. Rootali

    Mailcow Dockerized – Nginx Port Conflict with CloudPanel

    This is a classic port conflict between Mailcow's internal Nginx and CloudPanel's Nginx. ✅ Solution: Edit Mailcow’s mailcow.conf file and update the following values: HTTP_PORT=7080 HTTPS_PORT=7443 Then apply the changes: docker-compose down docker-compose up -d Make sure your reverse...
Back
Top