DirectAdmin 1.62.9 has been released

fln

Administrator
Staff member
Joined
Aug 30, 2021
Messages
880
Hi everyone!

We're happy to announce the release for 1.62.9.

This version includes a series of bug-fixes and a couple of new features, change-log can be found here:

DirectAdmin 1.62.9

The most notable feature is E-mail Summary report for admins (Pro Pack feature). The update should be automatically available for all installations subscribed to the current release channel.

We appreciate all the feedback on forums and issues reported in the ticketing system.

Thanks!
 
Really like the more frequent, “smaller” releases guys. Much better then a massive update every 6 months. (y)
 
I seem to be getting intermittent SSL errors for DA for my LetsEncrypt cert and noticed it just started after updating to this version. Anyone else seeing issues when accessing via SSL and port 2222?

Not sure if it's related but I also just restored a backup from another DA server and mapped it to the shared IP I am accessing DA from, it also had a LetsEncrypt cert. Restarting DA seems to resolve it.
 
nginx_apache

src01.hostname.com have 3IP linken

access with http://1.2.3.4/phpmyadmin
no problem at all

sometime I can't access phpmyadmin, roundcube with "https://src01.hostname.com/phpmyadmin"
I can login to access but any css,js,font,img 404 error

only "nginx_static_file" will be 404 error

location ^~ /phpMyAdmin {
root /var/www/html/;
index index.php index.html index.htm;
location ~ ^/phpMyAdmin/ {
access_log off;
set $my_server_addr $server_addr;
if ($server_addr ~ ^[0-9a-fA-F:]+$) { set $my_server_addr [$server_addr]; }
proxy_pass https://$my_server_addr:8081;
proxy_set_header X-Client-IP $remote_addr;
proxy_set_header X-Accel-Internal /phpMyAdmin/nginx_static_files;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_hide_header Upgrade;
}
location ~ ^/phpMyAdmin/nginx_static_files/ {
access_log /var/log/nginx/access_log_proxy;
alias /var/www/html/;
internal;
}
}
when I remove
proxy_set_header X-Accel-Internal /phpMyAdmin/nginx_static_files;

It can access normally

###UPDATE
Move thread to
 
Last edited:
ok look like it break with second ip

Example I have 3IP in my server

1.1.1.1 <<< Main IP
1.1.1.2
1.1.1.3

if I connect with "https://1.1.1.1/webmail"
it work fine

If I connect with 1.1.1.2 or 1.1.1.3
any css, js will be 404 notfound ( not loaded )

if I comment out in
#/etc/nginx/nginx.conf
#include /etc/nginx/directadmin-ips.conf;

and add my second ip to
#nginx-vhost.conf
listen 1.1.1.2:443 ssl http2;
It work fine again
 
Last edited:
hi everyone, we pushed a hot-fix to the beta and current release channels. It disables br compression again. We suspect the library we use is not stable enough for production use.
 
Last edited:
Hi, since DirectAdmin 1.62.9 have been released i can't customize the evolution skin logo anymore, everytime i try to upload a new logo i get this error:
"Cannot Execute Your Request
Please pick only one skin to apply"

I've also tested on a 1.62.7 and worked well, then i updated and the problem appeared so it seems to be related to the last updates.
 
Hi, since DirectAdmin 1.62.9 have been released i can't customize the evolution skin logo anymore, everytime i try to upload a new logo i get this error:
"Cannot Execute Your Request
Please pick only one skin to apply"

I've also tested on a 1.62.7 and worked well, then i updated and the problem appeared so it seems to be related to the last updates.
I have the same problem, is there a solution?
 
Not at the moment, as far as I could investigate when you click on the Upload button below the uploaded image the action send an empty POST request, that's why Directadmin gives an error, it's probably a skin/js problem
 
Not at the moment, as far as I could investigate when you click on the Upload button below the uploaded image the action send an empty POST request, that's why Directadmin gives an error, it's probably a skin/js problem
Then we'll wait for a fix
I rolled back the version
 
Back
Top