M
MadWalnut
Guest
Hallo,
ich habe heute auf meinem Debian 10 Buster Server meine phpMyAdmin-Installation auf 5.0 aktualisiert. Ich erhalte nun beim Aufruf von phpMyAdmin:
Meine PHP-Version sagt aber:
Installiert sind wohl 7.0 und 7.3:
Ist es möglich die Default-Version von ISP-Config auf 7.3 zu setzen? Von mir aus kann 7.0 ganz weg, benutze PHP kaum auf meinen Seiten und da ist 7.3 auch ok.
Ich habe bereits dieses Tutorial befolgt: https://www.howtoforge.com/tutorial...fig-3-from-debian-packages-on-debian-8-and-9/
Den Part mit dem Installieren hab ich weggelassen, hab 7.3 ja bereits. Ich kann in ISPConfig auch eine neue PHP-Version definieren (7.3) und diese auch auf die Webseiten anwenden.
Nur meine phpMyAdmin-Installation verwendet wohl immer noch 7.0. Wie kann ich das umstellen? Oder wie entferne ich 7.0 und setze 7.3 als Default für alles?
7.3 ist auch bereits System-Standard:
Danke schon mal!
ich habe heute auf meinem Debian 10 Buster Server meine phpMyAdmin-Installation auf 5.0 aktualisiert. Ich erhalte nun beim Aufruf von phpMyAdmin:
Code:
PHP 7.1.3+ is required.
Currently installed version is: 7.0.33-0+deb9u6
Meine PHP-Version sagt aber:
Code:
# php -v
PHP 7.3.14-1~deb10u1 (cli) (built: Feb 16 2020 15:07:23) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.14, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.3.14-1~deb10u1, Copyright (c) 1999-2018, by Zend Technologies
Installiert sind wohl 7.0 und 7.3:
Code:
# ls /etc/php
7.0 7.3
Ist es möglich die Default-Version von ISP-Config auf 7.3 zu setzen? Von mir aus kann 7.0 ganz weg, benutze PHP kaum auf meinen Seiten und da ist 7.3 auch ok.
Ich habe bereits dieses Tutorial befolgt: https://www.howtoforge.com/tutorial...fig-3-from-debian-packages-on-debian-8-and-9/
Den Part mit dem Installieren hab ich weggelassen, hab 7.3 ja bereits. Ich kann in ISPConfig auch eine neue PHP-Version definieren (7.3) und diese auch auf die Webseiten anwenden.
Nur meine phpMyAdmin-Installation verwendet wohl immer noch 7.0. Wie kann ich das umstellen? Oder wie entferne ich 7.0 und setze 7.3 als Default für alles?
7.3 ist auch bereits System-Standard:
Code:
# update-alternatives --config php
There are 2 choices for the alternative php (providing /usr/bin/php).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/php7.3 73 auto mode
1 /usr/bin/php7.0 70 manual mode
2 /usr/bin/php7.3 73 manual mode
Press <enter> to keep the current choice[*], or type selection number:
Code:
# update-alternatives --config php-cgi
There are 2 choices for the alternative php-cgi (providing /usr/bin/php-cgi).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/php-cgi7.3 73 auto mode
1 /usr/bin/php-cgi7.0 70 manual mode
2 /usr/bin/php-cgi7.3 73 manual mode
Press <enter> to keep the current choice[*], or type selection number:
Danke schon mal!