Hello,
After install PHP 7, PHP-DEVEL, APCu. I have problem with APCu.
APC.PHP work ok, in phpinfo(); i see that APCu is enabled. But after check in php like this
$bar = 'BAR';
apc_store('foo', $bar);
var_dump(apc_fetch('foo'));
I'm getting error 500 with this Warning in log:
How can I...