
Code: Select all
# tables: php_settings + account_templates - alle aktualaisieren
UPDATE `php_settings` SET `disable_functions` = replace(disable_functions, 'error_log, ', '');
UPDATE `account_templates` SET `php_disable_functions` = replace(php_disable_functions, 'error_log, ', '');
# alle php user conf aktualaisieren
find /etc/php/8.2/fpm/keyhelp_pool -type f -exec sed -i 's|error_log, ||g' {} \;
find /opt/keyhelp/php/*/etc/php-fpm.d -type f -exec sed -i 's|error_log, ||g' {} \;
# alle PHP services neu gestartet
systemctl status php8.2-fpm.service
systemctl restart keyhelp-php70-fpm.service
systemctl restart keyhelp-php71-fpm.service
systemctl restart keyhelp-php72-fpm.service
systemctl restart keyhelp-php73-fpm.service
systemctl restart keyhelp-php74-fpm.service
systemctl restart keyhelp-php80-fpm.service
systemctl restart keyhelp-php81-fpm.service
systemctl restart keyhelp-php83-fpm.service
systemctl restart keyhelp-php84-fpm.service

Allerdings ist damit nicht allein die Ursache für die oben genannten Probleme komplett behoben ...