You are not logged in.
Pages: 1
I need to install GLPI on Debian 10, I can't use Debian 11 because the server is also Zabbix and OpenAudit. The environment is small.
I'm with php:
# php -v
PHP 8.0.28 (cli) (built: Feb 14 2023 18:29:37) ( NTS )
Copyright (c) The PHP Group
Zend Engine v4.0.28, Copyright (c) Zend Technologies
with Zend OPcache v8.0.28, Copyright (c), by Zend Technologies
But if I try to use GLPI in version > 10.0.0 the message appears: PHP 7.4.0 - 8.2.0 (exclusive) required
I can only load GLPI in version 9.5.12
Is there any incompatibility? From the message and the documentation I understand that no..
Offline
You can have different versions of PHP running in the command line and Apache. The version you saw was for the version being used by the command line.
You can check which PHP module is loaded in Apache with:
apachectl -M
OR
ls /etc/apache2/mods-enabled
You can disable the existing module if it is an incompatible version with:
a2dismod php7.2
and enable a compatible version's module
a2enmod php8.0
Restart Apache for the changes to take effect:
systemctl restart apache2
GLPI Collaborator and Plugin Developer.
My non-English comments are automated translations. Sorry for any confusion that causes.
Mes commentaires non anglais sont des traductions automatiques. Désolé pour toute confusion qui cause.
Mis comentarios que no están en inglés son traducciones automáticas. Perdón por cualquier confusión que cause.
Offline
That's right! Thanks
Offline
Pages: 1