DirectAdmin 1.685

fln

Administrator
Staff member
Joined
Aug 30, 2021
Messages
1,223
We are happy to announce the release of DirectAdmin 1.685.

A full release change log is here:

DirectAdmin 1.685


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!
 
You know that that change broke our application for an hour? Why do you do that with php_ADMIN_value, why not just PHP_VALUE???? If I have Redis in my ONE application and other apps are using Files session Redis stopped working!


PHP:
ini_set('session.save_handler', 'redis');
if ($environment == 'production' || $environment == 'clone') {
    ini_set('session.save_path', "tcp://localhost:6379");
} else {
    ini_set('session.save_path', "tcp://redis:6379");
}
1758195083852.png
 
  • Like
Reactions: fln
Thanks for reporting it @ShinJii. The php_admin_value is used to make all PHP modes to behave the same (the php-fpm mode was always using php_admin_value).

I agree that there is no much benefit in enforcing it. It is strange we never got requests to relax it on php-fpm mode. We will investigate it further and most likely relax it to be a simple php_value instead of php_admin_value.
 
Thanks fore reporting it @ShinJii. The php_admin_value is used to make all PHP modes to behave the same (the php-fpm mode was always using php_admin_value).

I agree that there is no much benefit in enforcing it. It is strange we never got requests to relax it on php-fpm mode. We will investigate it further and most likely relax it to be a simple php_value instead of php_admin_value.
Thanks :) we're using litespeed by the way.
 
The reason no any report yet,
I guest most of web dev just using "session_set_save_handler" function, so no reason to use that "session.save_path".
 
A new build is released. The php_home_tmp_session_save_path feature will use php_value instead of php_admin_value to keep the flexibility of changing it at script runtime. Thanks @ShinJii. The new build also fixes File Manager directory delete window showing NaN undefined message when the real directory size is not known, thanks @DrWizzle.
 
Back
Top