How to determine if PHP OPcache is enabled or not?
Have faith in your phpinfo(), you’ve got the necessary shared module running or it wouldn’t be showing up. Also, your opcache is indeed enabled, but only for web, not cli. The default for the library is enabled for web so , to disable uncomment the line starting with a semicolon like this: opcache.enable=0 As noted, … Read more