I can’t install apps
I can’t install apps
This problem is caused by the PHP CLI and “php” command set lower than 8.0.2 version and/or disabled PHP functions in your server. It generally happens in shared hosting with cPanel, Plesk, etc. panels where they offer Multi-PHP versions and set the lowest one for CLI and/or “php” command, mostly 5.x version.
Please, ask your hosting provider to make sure that PHP CLI and php command has at least 8.0.2 version and the following PHP functions are not disabled:
- * proc\_open
- * proc\_close
You can get Akaunting installed with one-click on DigitalOcean, Linode, or Hostinger servers and see the app installation working fine.
How to set PHP path manually?
If you know the exact path of PHP executable in your server, then you can set it within the .env file (located in the root directory of your Akaunting installation) like the following:
`bash
APP_PHP_PATH="/usr/bin/php8.0"
How to change PHP version?
If you have SSH access to your Ubuntu server, you can change the PHP version by running the following commands:
sudo update-alternatives --set php /usr/bin/php8.0
sudo update-alternatives --set phar /usr/bin/phar8.0
sudo update-alternatives --set phar.phar /usr/bin/phar.phar8.0
sudo update-alternatives --set phpize /usr/bin/phpize8.0
sudo update-alternatives --set php-config /usr/bin/php-config8.0
```
Keep in mind that the /usr/bin/php8.0 path may differ on your server. Here you can learn more.
If you don’t have SSH access then your hosting provider must apply the change.
Updated on: 23/03/2025
Thank you!