Updating Passbolt CE on Debian

Hi ncastle, if your machine is only hosting passbolt you could remove the old php version its running to keep the system clean and install php 8.2 or greater - since passbolt switched to a newer version.

Would be the easiest way, you could to it by uninstalling every older php-version

#sudo apt remove php7.*
//Depends on your way of handling it

and get the 8.2 with the tweaks PB requires

sudo apt-get install php8.2 php8.2-cli php8.2-curl php8.2-mbstring php8.2-intl php8.2-mysql php8.2-fpm php8.2-xml php8.2-gd

update your php default settings (for your webservice too)

sudo update-alternatives --install /usr/bin/php php /usr/bin/php8.2 82

#sudo update-alternatives --config php

That should do the trick

Keep us updated if possible

best regards :slight_smile: