From: Anatol Belski Date: Thu, 7 Jan 2016 16:57:41 +0000 (+0100) Subject: more informative error message for opcache fallback X-Git-Tag: php-7.0.3RC1~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e72848c171a8039b07bf8a2f04420629e170ee33;p=php more informative error message for opcache fallback --- diff --git a/ext/opcache/shared_alloc_win32.c b/ext/opcache/shared_alloc_win32.c index a56546557c..c71f253b0a 100644 --- a/ext/opcache/shared_alloc_win32.c +++ b/ext/opcache/shared_alloc_win32.c @@ -176,7 +176,7 @@ static int zend_shared_alloc_reattach(size_t requested_size, char **error_in) } #endif err = ERROR_INVALID_ADDRESS; - zend_win_error_message(ACCEL_LOG_FATAL, "Base address marks unusable memory region", err); + zend_win_error_message(ACCEL_LOG_FATAL, "Base address marks unusable memory region. Please setup opcache.file_cache and opcache.file_cache_callback directives for more convenient Opcache usage", err); return ALLOC_FAILURE; }