summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-01-07 17:57:41 +0100
committerAnatol Belski <ab@php.net>2016-01-07 17:57:41 +0100
commite72848c171a8039b07bf8a2f04420629e170ee33 (patch)
tree179c8d9d8f6648e3011d0f499c9874da91d26f67
parent42a145273c0def23cda480fcf4dc48c1ea28d956 (diff)
downloadphp-git-e72848c171a8039b07bf8a2f04420629e170ee33.tar.gz
more informative error message for opcache fallback
-rw-r--r--ext/opcache/shared_alloc_win32.c2
1 files changed, 1 insertions, 1 deletions
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;
}