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
php-apcu-bc is dropped in PHP 8
Also https://pecl.php.net/package/apcu_bc have no compatible release.
Setting: $APC_ON = false; in config.php or trying to workaround in functions.php:
if ($haveAPC && ini_get('apc.enabled')) {
$APC_ON = false;
} else {
$APC_ON = false;
}
still issues: "Call to undefined function apc_fetch()".
It makes waf-fle unusable under many distributions (debian bookworm for example).
The text was updated successfully, but these errors were encountered:
php-apcu-bc is dropped in PHP 8
Also https://pecl.php.net/package/apcu_bc have no compatible release.
Setting: $APC_ON = false; in config.php or trying to workaround in functions.php:
if ($haveAPC && ini_get('apc.enabled')) {
$APC_ON = false;
} else {
$APC_ON = false;
}
still issues: "Call to undefined function apc_fetch()".
It makes waf-fle unusable under many distributions (debian bookworm for example).
The text was updated successfully, but these errors were encountered: