You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zend_error(E_WARNING, ACCELERATOR_PRODUCT_NAME" can't be temporary enabled (it may be only disabled till the end of request)");
165
+
if (*p) {
166
+
/* Do not warn if OPcache is enabled, as the update would be a noop anyways. */
167
+
returnSUCCESS;
168
+
}
169
+
170
+
if (stage==ZEND_INI_STAGE_ACTIVATE) {
171
+
if (strcmp(sapi_module.name, "fpm-fcgi") ==0) {
172
+
zend_accel_error(ACCEL_LOG_WARNING, ACCELERATOR_PRODUCT_NAME" can't be temporarily enabled. Are you using php_admin_value[opcache.enable]=1 in an individual pool's configuration?");
173
+
} else {
174
+
zend_accel_error(ACCEL_LOG_WARNING, ACCELERATOR_PRODUCT_NAME" can't be temporarily enabled (it may be only disabled until the end of request)");
175
+
}
176
+
} else {
177
+
zend_error(E_WARNING, ACCELERATOR_PRODUCT_NAME" can't be temporarily enabled (it may be only disabled until the end of request)");
0 commit comments