Search results

  1. admin

    Another feature good to have to protect your server.

    Hi, You need to install/enable CSF under Admin Area > Plugins. Thanks
  2. admin

    Mysql service- unknown

    Hi, We replied to your ticket. Please share requested details in the ticket. Thanks
  3. admin

    Disable the "x-server-powered-by" in response header

    You need to modify nginx template files, located under /usr/local/zesle, find files ending with *.blade.php
  4. admin

    Ssh port 22

    You have the flexibility to utilize an SFTP file manager such as WinSCP. Simply, include a new SSH key for login within the user account. Under the SSH keys section, ensure that you designate it as authorized.
  5. admin

    Cons to using stand alone Nginx for web hosting customers?

    Yes, NGINX offers improved performance compared to Apache. However, I recommend using a hybrid approach with NGINX in front of Apache. This way, you can benefit from .htaccess functionality while still leveraging the performance advantages of NGINX.
  6. admin

    Feature Request - Clear Nginx Cache Button (and all the code done for you too)

    Hi, We will look into it and will try to prioritize it for the next release. Thanks for sharing all the technical details and reference links. In the meantime, I will check with the development team to see if there is any workaround. Thanks
  7. admin

    My Honest Evaluation After 3 Months of Beta Testing

    Wow, first of all big thanks for sharing such a detailed list. We always love to hear back from our customers. We will definitely continue the development with the support and love of valuable customers like you. Thanks for sharing all the points you like and mainly, we really appreciate that...
  8. admin

    Feature Request - Clear Nginx Cache Button (and all the code done for you too)

    Thanks for sharing the detailed code sample, I will pass this to our development team and will try to add this to our future release.
  9. admin

    Bug Report: One-Click WP Install Uses Swedish Char Set Database

    Hi Jared, Thanks for reporting this, really appreciate it. We will look into it and will update this in the next release accordingly. Thanks
  10. admin

    Need to Add PHP Extension memcached

    Use this script for RHEL #!/usr/bin/bash set -ex ROOT=$(pwd) sudo yum update sudo yum -y groupinstall 'Development Tools' # dependencies sudo yum install zlib-devel sudo yum install libmemcached-devel # Install build package sudo yum install ze-php81-php-devel # download and extract...
  11. admin

    Need to Add PHP Extension memcached

    Hello Jared, When we try to install php extensions by native commands like apt-get install php-memcached, it messup zeslecp installation, I highly recommend you to run install command, it will just do fixes Here guide to install/compile memcached php extension #!/usr/bin/bash set -ex...
  12. admin

    WORDPRESS INSTALL NOT LOADING

    You Should contact support or initiate chat on right bottom on website homepage
  13. admin

    HOW TO UNINSTALL ZESLE

    It's not possible to uninstall ZesleCP. I recommend you to just rebuild server
  14. admin

    HOW TO INCREASE PHP FILE UPLOAD LIMIT

    Hi, The config settings under "PHP Configuration" section will apply to all of your domains. If you are looking to change PHP config values/settings for ZesleCP interface itself (including PhpMyAdmin) then please do the following: Edit config at /opt/zesle/zesle-php/root/etc/php.ini After...
  15. admin

    HOW TO INCREASE PHP FILE UPLOAD LIMIT

    Are you trying to import database using phpmyadmin from zesle interface?
  16. admin

    Disable some services

    In addition to that, you can stop services under Server Status > Services Status (https://<your-ip>:2087/server-status/services-status). It will not hide any features/menus but will stop the service itself and will not consume resources any more.
  17. admin

    Disable some services

    By default, ZesleCP initiates the email and DNS services automatically. However, we plan to enable the option to deactivate any unused features in the future.
  18. admin

    Database Backup

    mysqldump: [Warning] Using a password on the command line interface can be insecure. mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces How to resolve above errors create new file under user home directory...
  19. admin

    Database Backup

    #!/bin/bash # Set database credentials USER="username" PASSWORD="password" HOST="localhost" DB_NAME="database_name" # Set backup directory and filename BACKUP_DIR="/path/to/backup/directory" DATE=$(date +%Y-%m-%d-%H-%M-%S) BACKUP_FILENAME="$DB_NAME-$DATE.sql" # Create backup directory if it...
Top