What's new
Panelica Community Forum

Welcome to the official Panelica Community Forum — the central hub for server administrators, developers, and hosting professionals. Register a free account today to access technical discussions, product announcements, feature requests, and direct support from the Panelica team. Be part of the growing community shaping the future of server management.

Recent content by admin

  1. admin

    Deployda build almıyor

    We will conduct the necessary tests on our side and provide you with an update in the coming days. Thank you for your valuable feedback. These reports are important to us as we continue working toward making Panelica more stable, reliable, and robust.
  2. admin

    Solved File Manager Suggestion

    This has been added in panelica-server 1.0.450.
  3. admin

    Review of All Bundled PHP Runtime Builds

    Hi Tater, First of all, thank you for taking the time to provide such a detailed and technically thorough report. Feedback like this is extremely valuable to us. We try to package and maintain as much of our own infrastructure as possible, and we build our testing environments around that...
  4. admin

    Solved Spam filtresi skoru kayıt edilmiyor.

    Thank you for the information you provided. We have identified and resolved the issue on our side. The fix is included in the latest update. When you have a chance, we would appreciate it if you could perform your own testing and let us know the results. Stable Panelica Server: v1.0.447
  5. admin

    Solved File Manager Suggestion

    Thank you for the excellent suggestion, Tater. We completely agree having a dedicated Move action is much more intuitive than relying on Copy/Paste for relocating files and folders. A proper Move dialog with destination selection would make file management significantly smoother, especially...
  6. admin

    Solved Spam filtresi skoru kayıt edilmiyor.

    Which operating system are you using? Our team will investigate this issue.
  7. admin

    Git Deploy — Repository Management and CI/CD

    Thank you for the screenshots — they showed us two real defects, and both are fixed. Why you could not find the field. "Preserve on deploy" was only rendered in the create-repository form, so an existing repository had no way to reach it. It now sits on the repository's Overview tab under...
  8. admin

    Volumes vs bind mounts on a hosting server, and the UID problem

    Both put data outside the container. They fail differently, and on a hosting server the difference matters more than usual. Named volumes docker run -v appdata:/var/lib/app myimage Docker manages the storage. Portable, easy to back up as a unit, and the container's own user owns the contents...
  9. admin

    Running PHP 5.6 to 7.4 on a modern kernel without CloudLinux

    The problem is familiar to anyone maintaining old client sites: the code needs PHP 5.6 or 7.x, the distribution stopped packaging it years ago, and compiling it against a modern OpenSSL is an afternoon you will never get back. Containers solve this cleanly because the old PHP brings its own...
  10. admin

    Docker networks — when the default bridge stops being good enough

    Most people never create a network and mostly get away with it. Here is where that stops working. The default bridge has no DNS Containers on the default bridge network cannot resolve each other by name. On a user-defined network they can, and that single difference is why almost every Compose...
  11. admin

    Knowing when a newer image exists — and when you should not pull it

    Checking is easy. Deciding is the part worth talking about. Checking # what you have docker image inspect myimage:tag --format '{{.Id}} {{.Created}}' # what the registry has now docker pull myimage:tag If the pull reports "Image is up to date", nothing changed. If it downloads layers, the...
  12. admin

    Pulling from private registries — GHCR, Docker Hub rate limits and stored credentials

    Two things eventually force you to deal with registry credentials: Docker Hub's anonymous pull limits, and your own private images. The rate limit problem Anonymous pulls are counted per IP. On a VPS that is fine until it is not — a redeploy loop, or a shared NAT address, and suddenly pulls...
  13. admin

    What is actually worth self-hosting on a small VPS — with real memory numbers

    Every "50 apps to self-host" list ignores the only question that matters on a 4 GB box: what does it cost to keep running. Here are the floors I work from, taken from the template catalogue rather than from marketing pages. Comfortable on a small server (128–256 MB each) Uptime Kuma for...
  14. admin

    Cloning a running stack for staging without touching production

    Testing an upgrade against production because staging is "basically the same" is how weekends get ruined. Cloning a container properly takes a few minutes and gives you a real copy. What has to be copied, and what must not be Copy: the image and tag, the environment, the volume data, the...
  15. admin

    Do you still need Portainer if your panel already manages Docker?

    Fair question and the answer is not automatic. It depends on what you use Portainer for, and most people use it for one of three things. If you use it as a container list with buttons — start, stop, restart, view logs, exec a shell — then a panel with container management replaces it outright...
Back
Top