You are not logged in.
Pages: 1
Hello,
SInce i install 10.0.11 i get this error when i try to install plug-in
Plugin archive format is not supported by your system: tbz2.
some info
ubuntu@openhabian:~$ php -i|grep phar
/etc/php/8.1/cli/conf.d/20-phar.ini,
Registered PHP Streams => https, ftps, compress.zlib, php, file, glob, data, http, ftp, phar, zip
Phar-based phar archives => enabled
Tar-based phar archives => enabled
ZIP-based phar archives => enabled
phar.cache_list => no value => no value
phar.readonly => On => On
phar.require_hash => On => On
I re install phar also, i get same error
Offline
This resolved the issue for me (ubuntu):
First, you need to know which PHP version is installed. You can find out by running:
php -v
Install the PHP bzip2 extension:
Once you know your PHP version, you can install the corresponding bz2 package. For example, if you are using PHP 7.4, you would run:
sudo apt-get install php7.4-bz2
Adjust php7.4-bz2 to match your PHP version, such as php8.0-bz2 or php8.1-bz2, etc.
Restart Apache:
After installing the PHP bz2 extension, you need to restart Apache to load the new extension:
sudo systemctl restart apache2
if you installed php from source code add --with-bz2 when executing ./configure
Last edited by mmorin55 (2024-03-21 17:02:30)
Offline
Pages: 1