Maria Alc
Hi, permissions are defined by the PHP user, therefore, review the PHP-FPM pool that is configured correctly.
In Ubuntu it could be something as:
nano /etc/php/8.3/fpm/pool.d/my_php_pool_for_dedalo.conf
and review the config
; RPM: apache Choosed to be able to access some dir as httpd
user = my_dedalo_user
; RPM: Keep a group allowed to write in log dir.
group = www-data
In RedHat the user is the same (Dédalo user) but the group is should be apache
as:
nano /etc/php-fpm.d/my_php_pool_for_dedalo.conf
and review the user and the group
; RPM: apache Choosed to be able to access some dir as httpd
user = my_dedalo_user
; RPM: Keep a group allowed to write in log dir.
group = apache
If the user config is wrong and you change it, remember to restart PHP and Apache:
for Ubuntu:
systemctl restart php8.3-fmp
systemctl restart apache2
for RedHat
systemctl restart php-fmp
systemctl restart httpd
You can see the PHP user in Dédalo maintenance panel:
Or in PHP info panel:
I hope it helps
Best