Войдите в phpmyAdmin - PullRequest
       8

Войдите в phpmyAdmin

0 голосов
/ 03 сентября 2018

Я не могу войти в phpmyadmin (XAMPP) Мой конфигурационный файл:

<?php
declare(strict_types=1);
$cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

/**
 * Servers configuration
 */
$i = 0;

/**
 * First server
 */
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;


// $cfg['Servers'][$i]['AllowNoPassword'] = TRUE;
$cfg['Servers'][$i]['password']='mypass';


$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';

Когда я набираю логин root и пароль mypass, возникает ошибка:

mysqli_real_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: YES)

Кто-нибудь может мне помочь, пожалуйста?

...