I am getting the following error in error_log after installing APCu within WHM on PHP 7.3:
https://pear.php.net/bugs/bug.php?id=21007&edit=3
How can I set the proper order via WHM? Every thread I've seen just says just to do it but now how.
Thanks!
I've researched a dozen or so threads on this issue and all seem to point to load order:PHP Startup: Unable to load dynamic library 'apc.so' (tried: /opt/cpanel/ea-php73/root/usr/lib64/php/modules/apc.so (/opt/cpanel/ea-php73/root/usr/lib64/php/modules/apc.so: undefined symbol: zif_apcu_store
https://pear.php.net/bugs/bug.php?id=21007&edit=3
On installing PHP extensions using "pecl install <ext>" the extension will be automatically enabled in php.ini. This is fine but it results in a reverse order of "extension=<ext>.so" directive. As "apcu_bc" (compiled as apc.so) depends on apcu which needs to be loaded first.
I've tried uninstalling/reinstalling and restarting Apache as other threads recommended, didn't fix.The output means you are trying to load apc before apcu, which shouldn't happens thanks to the .ini names which ensure correct load order (40-apcu.ini is before 50-apc.ini)
How can I set the proper order via WHM? Every thread I've seen just says just to do it but now how.
Thanks!
Last edited by a moderator: