Recent content by Rootali

  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. Rootali

    CS-Cart Varnish Add-on – ESI Login/Logout Issue on CloudPanel

    Yes — this is a known behavior with the CS-Cart Varnish add-on after 4.17.1. ✅ Solution: Add the following header to your Nginx config under the location / block: add_header Cache-Control "no-store, no-cache, must-revalidate"; This prevents Varnish from caching login-related responses and...
  10. Rootali

    Installing Flarum on CloudPanel – 404/403 Errors Solved

    Don’t worry — this is a very common situation when installing Flarum manually, especially if you're unfamiliar with directory structure and permissions. Fortunately, it’s easy to fix once you know what to look for. Problem Summary If you see a 404, it’s likely a URL rewrite issue or the Flarum...
  11. Rootali

    CloudPanel: The Ideal Solution for Managing Cloud Server Infrastructure

    Of course! Here is a clean, polished, and original documentation-style article in English that you can use for sharing or publishing: CloudPanel: The Ideal Solution for Managing Cloud Server Infrastructure In today’s digital landscape, cloud technologies and web infrastructure have become...
  12. Rootali

    Alternatives to ServerAvatar, CloudPanel, and HestiaCP?

    Yes, there are a few alternatives that match what you're looking for — simpler interfaces, less dependency on CLI, and affordable or free options. Here are some solid picks: 1. RunCloud Web-based control panel Works with DigitalOcean, AWS, GCP, etc. Beginner-friendly UI — no SSH knowledge...
  13. Rootali

    Custom Domain - Let’s Encrypt connection timeout on fresh install

    Thanks for the detailed breakdown — this is a common issue with Let’s Encrypt validation when using CloudFlare or when something silently blocks port 80 access. Let’s go step-by-step: 1. DNS looks OK You confirmed both IP and subdomain resolve — and if you're seeing the panel on...
  14. Rootali

    Let’s Encrypt certificate installation failing with 404 (CloudPanel + GoDaddy)

    That error usually means the Let's Encrypt verification file isn’t accessible under the required /.well-known/acme-challenge/ path. Let’s go step-by-step: 1. Confirm DNS is working You already mentioned that DNS points to 139.180.162.241, so that’s good. Just in case, run: dig +short...
  15. Rootali

    Rclone with Box.com – "directory not found" error in CloudPanel backup

    Thanks for the detailed info — this one is a bit tricky but solvable. The issue here is likely not with rclone itself, but with how CloudPanel executes the rclone command — specifically the user context and config path. Let’s break it down: 1. Your rclone setup looks fine Your output from...
Back
Top