2016-06-19 3 views
1

xampp 서버 v3.2.1을 설치하고 config.inc.php 파일에서 사용자 이름과 비밀번호를 변경합니다.윈도우 8에서 phpmyadmin에 로그인 할 수 없습니다.

아래의 내 cofig.inc.php 파일.

<?php 
/* 
* This is needed for cookie based authentication to encrypt password in 
* cookie 
*/ 
$cfg['blowfish_secret'] = 'xampp'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */ 

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

/* 
* First server 
*/ 
$i++; 

/* Authentication type and info */ 
$cfg['Servers'][$i]['auth_type'] = 'cookie'; 
$cfg['Servers'][$i]['user'] = 'root'; 
$cfg['Servers'][$i]['password'] = 'admin'; 
$cfg['Servers'][$i]['extension'] = 'mysqli'; 
$cfg['Servers'][$i]['AllowNoPasswordRoot'] =false; 
$cfg['Lang'] = ''; 

/* Bind to the localhost ipv4 address and tcp */ 
$cfg['Servers'][$i]['host'] = '127.0.0.1'; 
$cfg['Servers'][$i]['connect_type'] = 'tcp'; 

/*/* User for advanced features */ 
$cfg['Servers'][$i]['controluser'] = 'pma'; 
$cfg['Servers'][$i]['controlpass'] = ''; 

/* Advanced phpMyAdmin features */ 
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; 
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark'; 
$cfg['Servers'][$i]['relation'] = 'pma_relation'; 
$cfg['Servers'][$i]['table_info'] = 'pma_table_info'; 
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords'; 
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages'; 
$cfg['Servers'][$i]['column_info'] = 'pma_column_info'; 
$cfg['Servers'][$i]['history'] = 'pma_history'; 
$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords'; 
$cfg['Servers'][$i]['tracking'] = 'pma_tracking'; 
$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig'; 
$cfg['Servers'][$i]['recent'] = 'pma_recent'; 
$cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs'; 
$cfg['Servers'][$i]['users'] = 'pma_users'; 
$cfg['Servers'][$i]['usergroups'] = 'pma_usergroups'; 
$cfg['Servers'][$i]['navigationhiding'] = 'pma_navigationhiding'; 
$cfg['Servers'][$i]['savedsearches'] = 'pma_savedsearches'; 

/* 
* End of servers configuration 
*/ 

?> 

나는 그것이 다음과 같은 메시지 보여줘 로그인하려고 :

enter image description here

나는 인터넷에서 많이 검색하지만 나를 도와 호야을 위해 일을 did't.

+0

시도 [이] (http://stackoverflow.com/questions/24566453/resetting-mysql-root 로그인 XAMPP 서버를 다시 시작, 다음 두 줄에 자격 증명을 지정하고 시도 -password-with-xampp-on-localhost ') –

+0

동일한 문제가 발생합니다. 그것을 해결 했습니까? – carla

답변

0

에 phpMyAdmin에

$cfg['Servers'][$i]['controluser'] = <Your Username>; 
$cfg['Servers'][$i]['controlpass'] = <Your Password>; 
+0

Mathun Kumar. 나는 그것을 시도하지만 저를 위해 일하는 것은 저에게 동일한 오류를주지 않습니다. –

+0

"고급 기능을위한 사용자"및 "고급 phpMyAdmin 기능"설명문을 주석으로 달기/제거를 시도하십시오 .. –

+0

나는 그것을 시도하지만 저를 위해 일하지 않습니다. 저에게 다른 해결책을 주 시옵소서. –

관련 문제