From d51108d5df7868ec53257bcd7131886a52af1c1f Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 20 Jun 2019 09:04:14 +0300 Subject: Fixed bug #78185 (File cache no longer works) (cherry picked from commit cd6a6e4cf2677bfbe2a21164239737eb22bd4da6) --- ext/opcache/ZendAccelerator.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ext/opcache/ZendAccelerator.c b/ext/opcache/ZendAccelerator.c index 70508b6b05..b6c001d637 100644 --- a/ext/opcache/ZendAccelerator.c +++ b/ext/opcache/ZendAccelerator.c @@ -1772,6 +1772,13 @@ zend_op_array *persistent_compile_file(zend_file_handle *file_handle, int type) /* The Accelerator is disabled, act as if without the Accelerator */ ZCG(cache_opline) = NULL; ZCG(cache_persistent_script) = NULL; +#ifdef HAVE_OPCACHE_FILE_CACHE + if (file_handle->filename + && ZCG(accel_directives).file_cache + && ZCG(enabled) && accel_startup_ok) { + return file_cache_compile_file(file_handle, type); + } +#endif return accelerator_orig_compile_file(file_handle, type); #ifdef HAVE_OPCACHE_FILE_CACHE } else if (file_cache_only) { -- cgit v1.2.1