suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Warum kann ich mich nicht anmelden, auch nachdem ich die Konfiguration von phpmyadmin geändert habe?

<?php/* Serverkonfiguration */$i = 0;/* Server: localhost [1] */$i++;$cfg['Servers'][$i]['verbose'] = 'localhost'; $cfg['Servers'][$i]['host'] ='localhost';$cfg['Servers'][$i]['port'] = '';$cfg['Servers'][$ i]['socket'] = '';$cfg['Servers'][$i]['connect_type'] = 'tcp';$cfg['Servers'][$i]['extension'] = ' mysqli';$cfg['Servers'][$i]['auth_type'] = 'cookie';$cfg['Servers'][$i]['user'] = 'root';$cfg['Servers '][$i]['password'] = '';$cfg['Servers'][$i]['AllowNoPassword'] = true;/* Ende der Serverkonfiguration */$cfg['DefaultLang'] = 'en-utf-8';$cfg['ServerDefault'] = 1;$cfg['UploadDir'] = '';$cfg['SaveDir'] = '';/* rajk – für Blobstreaming */$cfg ['Servers'][$i]['bs_garbage_threshold'] = 50;$cfg['Servers'][$i]['bs_repository_threshold'] = '32M';$cfg['Servers'][$i][ 'bs_temp_blob_timeout'] = 600;$cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';?>

Gemäß der Konfiguration sind die Kontoeingabe root und das Passwort leer, aber die offizielle Anzeige „Anmeldung mit leerem Passwort ist verboten (siehe Leere Passwörter zulassen)“

Später habe ich das Passwort in der Konfiguration hinzugefügt, aber ich kann mich immer noch nicht mit dem Konto und dem Passwort anmelden. Kann jemand Folgendes beantworten? ? Online warten, es ist ziemlich dringend

P粉533053569P粉533053569912 Tage vor1030

Antworte allen(1)Ich werde antworten

  • 王林

    王林2022-09-20 19:14:30

    要是你想用空密码,将phpmyadmin下的config.inc.php(根目录)或者config.default.php(根目录)中的$cfg['Servers'][$i]['AllowNoPassword'] = false;改为$cfg['Servers'][$i]['AllowNoPassword'] = true;要是你想设置密码不为空则将$cfg['blowfish_secret'] = '123456'; // use here a value of your choice 你要设置的密码

    Antwort
    0
  • StornierenAntwort