phpMyAdmin => Login nicht möglich wg: "Die Erweiterung mysqli kann nicht geladen ..."

Lord_Icon

Member
Hi,

für ein Backupsystem habe ich einen 2ten Server komplett neu aufgesetzt.

Habe bisher alle Dienste sauber konfiguriert.

Nur mit den Programm PhpMyAdmin macht mir Probleme:

Rufe ich das Prog. auf, erhalte ich die Fehlermeldung:
phpMyAdmin - Fehler
Die Erweiterung mysqli kann nicht geladen werden. Bitte �berpr�fen Sie Ihre PHP-Konfiguration. - Dokumentation


Da ich in Google gelesen habe, das hier PHP "schuld" sei, habe ich mich darin nochmal umgesehen:

In der /etc/php5/cli/php.ini habe ich bei 65% folgendes zu der MySQLi gefunden

Code:
[MySQLi]

; Maximum number of links.  -1 means no limit.
mysqli.max_links = -1

; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
; at MYSQL_PORT.
mysqli.default_port = 3306

; Default socket name for local MySQL connects.  If empty, uses the built-in
; MySQL defaults.
mysqli.default_socket =

; Default host for mysql_connect() (doesn't apply in safe mode).
mysqli.default_host =

; Default user for mysql_connect() (doesn't apply in safe mode).
mysqli.default_user =

; Default password for mysqli_connect() (doesn't apply in safe mode).
; Note that this is generally a *bad* idea to store passwords in this file.
; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
; and reveal this password!  And of course, any users with read access to this
; file will be able to reveal the password as well.
mysqli.default_pw =

; Allow or prevent reconnect
mysqli.reconnect = Off

Nur kann ich das ganze nicht nachvollziehen. Weil mein MainServer genau die gleiche Einstellung drin hat. Und laut Yast ist MySQLi nicht installiert.


Was kann ich noch tun ?

thx
 
Last edited by a moderator:
Entweder compilierst du PHP mit MySQLi Extension oder du stellst in phpMyAdmin den Datenbankzugriff auf mysql standard um.
 
Danke... hab es gestern irgendwie noch hinbekommen.

Ohne ein kompieliern oder Änderung einer Datei. Nachdem ich den Server mal rebootet hatte, ging es komischerweise.

Kann aber auch daran leigen, das ich vorher schon etliche .conf Datein verändert habe und vergessen habe, die entsprechenden Dienste mal zu restarten. :rolleyes:

Thx
 
Back
Top