I have updated to 3.27.0 and followed the process to update PHP on my VMware Ubuntu installation.
The process seemed to go without issue and when I checked php -v I get 8.4.14 but the Eramba system health claims I’m running 8.2.27 still and is “not ok”
Anyone encountered this? Eramba seemingly functions totally fine, I just can’t update now due to the health check.
It could be that the php_module is symlinked and is pointing to a generic or old version rather than the specific one that’s required.
Run the below to confirm which version is actually loaded: ls -l /etc/apache2/mods-enabled/php*.load
You should see something like this: /etc/apache2/mods-available/php8.4.load. If it points to another php version, then apache is still linked to an older version.
If the symlink doesn’t point to php8.4 try running the below as an example to disable any other versions that are showing: sudo a2dismod php8.1 php8.2 php8.3 sudo a2enmod php8.4 sudo systemctl restart apache2
As for the error message, you can run the below to clean it up: