From 6b9a6142e132c6f15d4a009e199cdc6f9f1092d3 Mon Sep 17 00:00:00 2001 From: Walmir Silva Date: Wed, 22 Oct 2025 10:52:40 -0300 Subject: [PATCH 1/2] fix(fpm-opcache): remove conflicting OPcache settings from FPM pool - Commented out php_value overrides for opcache.* in www.conf - Moved OPcache configuration entirely to docker-php-ext-opcache.inii - Ensured a single, consistent source of OPcache settings via conf.d This prevents PHP-FPM from attempting to enable OPcache at runtime, eliminating repeated "Zend OPcache can't be temporary enabled" warnings and ensuring stable caching behavior across environments. --- php/www.conf | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/php/www.conf b/php/www.conf index cd11eac..85afa27 100644 --- a/php/www.conf +++ b/php/www.conf @@ -67,17 +67,6 @@ php_admin_flag[allow_url_fopen] = on php_admin_flag[allow_url_include] = off php_admin_value[open_basedir] = /var/www/html:/tmp:/usr/share/php:/usr/local/lib/php -; Performance -php_value[opcache.enable] = 1 -php_value[opcache.memory_consumption] = ${PHP_OPCACHE_MEMORY} -php_value[opcache.max_accelerated_files] = ${PHP_OPCACHE_MAX_FILES} -php_value[opcache.validate_timestamps] = ${PHP_OPCACHE_VALIDATE_TIMESTAMPS} -php_value[opcache.revalidate_freq] = ${PHP_OPCACHE_REVALIDATE_FREQ} - -; Production optimizations -php_value[opcache.save_comments] = 0 -php_value[opcache.enable_file_override] = 1 - ; Catch workers output for debugging catch_workers_output = yes decorate_workers_output = no From d5bfa8d932d33ab88c6bf78b170f6eaa42758a26 Mon Sep 17 00:00:00 2001 From: Walmir Silva Date: Wed, 22 Oct 2025 10:53:20 -0300 Subject: [PATCH 2/2] chore: bump version to 1.4.5 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 1c99cf0..e516bb9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.4.4 +1.4.5