Softaculous https://www.softaculous.com/board/index.php? <![CDATA[Softaculous backup is not working for a domain]]> https://www.softaculous.com/board/index.php?tid=21914&tpg=1#p61869
Server information:

Load Averages: 1 min 5 min 15 min 1.05 1.24 1.45
Load Trending Down
Operating System: AlmaLinux v9.4.0
Product: cPanel & WHM v124.0.31 (STANDARD)

This is the cron job currently configured for my domain:

/usr/local/cpanel/3rdparty/bin/php -d disable_functions="" /usr/local/cpanel/whostmgr/docroot/cgi/softaculous/cli.php --backup --auto=1 --user=werlatonen --insid=26_94358

Manual backup using the CLI command via terminal works, but automatic backup with Softaculous is not working.

Please, somebody can help me?

If you need any further information, I am available. Thank you in advance.]]>
Mon, 26 Jan 2026 14:49:59 GMT https://www.softaculous.com/board/index.php?tid=21914&tpg=1#p61869
<![CDATA[Softaculous backup is not working for a domain]]> https://www.softaculous.com/board/index.php?tid=21913&tpg=1#p61868
Server information:

Load Averages: 1 min 5 min 15 min 1.05 1.24 1.45
Load Trending Down
Operating System: AlmaLinux v9.4.0
Product: cPanel & WHM v124.0.31 (STANDARD)

This is the cron job currently configured for my domain:

/usr/local/cpanel/3rdparty/bin/php -d disable_functions="" /usr/local/cpanel/whostmgr/docroot/cgi/softaculous/cli.php --backup --auto=1 --user=werlatonen --insid=26_94358

Manual backup using the CLI command via terminal works, but automatic backup with Softaculous is not working.

Please, somebody can help me?

If you need any further information, I am available. Thank you in advance.]]>
Mon, 26 Jan 2026 14:48:42 GMT https://www.softaculous.com/board/index.php?tid=21913&tpg=1#p61868
<![CDATA[FreeBSD template?]]> https://www.softaculous.com/board/index.php?tid=19467&tpg=1#p61867
Quote From : dnyaneshwarshekade12 May 6, 2025, 10:47 am
Hi,

You can download and install the FreeBSD OS in Virtualizor using the steps below:

Copy the ISO link from the official website:
https://download.freebsd.org/releases/amd64/amd64/ISO-IMAGES/14.2/FreeBSD-14.2-RELEASE-amd64-bootonly.iso snow rider 3d

Paste the link into the "Add ISO" section in Virtualizor.

Create a VPS using this ISO.

Install the FreeBSD OS on the VPS.


Once the installation is complete, go to Virtualizor and create a template from the VPS.

You can now use this template to create new FreeBSD VPS instances.

]]>
Mon, 26 Jan 2026 10:06:01 GMT https://www.softaculous.com/board/index.php?tid=19467&tpg=1#p61867
<![CDATA[problem with subdomain]]> https://www.softaculous.com/board/index.php?tid=21912&tpg=1#p61866 https://www.subdomain.nl/+subdomain folder.

How can I fix this so everything works properly?]]>
Sun, 25 Jan 2026 11:45:18 GMT https://www.softaculous.com/board/index.php?tid=21912&tpg=1#p61866
<![CDATA[nginx brotli and http3/quic]]> https://www.softaculous.com/board/index.php?tid=21910&tpg=1#p61865 Compiling Nginx from source with Brotli, HTTP/3/QUIC, and configurable cache paths works as you’ve outlined. Your flags and module paths look correct, and toggling HTTP/3 or Brotli from an API/UI is straightforward using http3 on/off and brotli on/off per server block. Just make sure your OpenSSL build supports QUIC (3.0+), and the Brotli submodule is initialized.]]> Sat, 24 Jan 2026 04:38:03 GMT https://www.softaculous.com/board/index.php?tid=21910&tpg=1#p61865 <![CDATA[nginx brotli and http3/quic]]> https://www.softaculous.com/board/index.php?tid=21910&tpg=1#p61864 Sat, 24 Jan 2026 04:33:24 GMT https://www.softaculous.com/board/index.php?tid=21910&tpg=1#p61864 <![CDATA[nginx brotli and http3/quic (and maybe in openresty)]]> https://www.softaculous.com/board/index.php?tid=21911&tpg=1#p61863
Quote From : myipgr January 22, 2026, 2:10 am
Any chances to compile nginx with
brotli support and http3/quic and maybe configurable cache options?
Using from source with success:
Code

  --with-pcre-jit \
  --with-threads \
  --with-file-aio \
  --with-http_ssl_module \
  --with-http_v2_module \
  --with-http_v3_module \
  --with-http_realip_module \
  --with-http_stub_status_module \
  --with-stream \
  --with-stream_ssl_module \
  --with-stream_realip_module \
  --with-stream_ssl_preread_module \
  --with-http_gzip_static_module \
  --add-module="${SRC_DIR}/ngx_brotli" \
  --with-openssl="${SRC_DIR}/openssl-${OPENSSL_VER}" \
  --with-openssl-opt="enable-quic no-shared no-tests" \
  --with-cc-opt="-I${SRC_DIR}/ngx_brotli/deps/brotli/c/include -Wno-error=sign-compare -Wno-sign-compare"


And in templates something like:
Code
    # Global HTTP/3 Settings (defaults)
    http3 on;
    quic_gso on;
    quic_retry on;

    # Gzip & Brotli
    gzip_vary on;
    gzip on;
    gzip_static on;
    brotli on;
    brotli_comp_level 6;
    brotli_static on;
    brotli_types text/plain text/css application/javascript application/json image/svg+xml;


open_file_cache          max=1000 inactive=10m;
open_file_cache_valid    60s;
open_file_cache_min_uses 1;
open_file_cache_errors  on;




server {
    listen 443 quic reuseport;
    server_name _;

    ssl_certificate    xxx
    ssl_certificate_key xxx

    ssl_protocols TLSv1.3;
    http3 on;

    return 444;
}


    # Cache keys
    proxy_cache_key  "$scheme$request_method$host$request_uri";
    fastcgi_cache_key "$scheme$request_method$host$request_uri";


    proxy_cache_path xxx
        levels=1:2 keys_zone=proxy_micro:20m max_size=512m inactive=60m use_temp_path=off;

    proxy_cache_path xxx
        levels=1:2 keys_zone=proxy_static:50m max_size=5g inactive=30d use_temp_path=off;

    fastcgi_cache_path xxx
        levels=1:2 keys_zone=php_cache:50m inactive=60m max_size=5g;


}


and vhost triggers:

Code

server {
    listen 443 ssl;
    # Advertise HTTP/3 to clients that connect over TCP first
    add_header Alt-Svc 'h3=":443"; ma=86400' always;

    http2 on;


# HTTPS (UDP 443 - HTTP/3)
server {
    listen 443 quic;
    http3 on;


Then we could enable it / disable it from API / UI
]]>
Fri, 23 Jan 2026 21:57:25 GMT https://www.softaculous.com/board/index.php?tid=21911&tpg=1#p61863
<![CDATA[Issues with some Apache Modules]]> https://www.softaculous.com/board/index.php?tid=21907&tpg=1#p61862
Sir Please open support ticket at https://softaculous.deskuss.com. so we can check the issue from our end

Regards.]]>
Fri, 23 Jan 2026 11:18:37 GMT https://www.softaculous.com/board/index.php?tid=21907&tpg=1#p61862
<![CDATA[Call Center Dana Digital]]> https://www.softaculous.com/board/index.php?tid=21908&tpg=1#p61861 Fri, 23 Jan 2026 09:29:00 GMT https://www.softaculous.com/board/index.php?tid=21908&tpg=1#p61861 <![CDATA[I need to forcefully kill the task running in virtulizor panel]]> https://www.softaculous.com/board/index.php?tid=20495&tpg=1#p61860 Fri, 23 Jan 2026 03:28:00 GMT https://www.softaculous.com/board/index.php?tid=20495&tpg=1#p61860