2017-11-06 7 views

답변

0

아마도 어쨌든 $i이 증가했을 것입니다. phpMyAdmin이 당신이 하나가 아닌 두 개의 서버를 가지고 있다고 생각한 것 같습니다. 당신은 당신의 전체 config.inc.php (난독 민감한 정보)를 포함하도록 게시물을 수정할 수 있으며, 이와 같은 부주의 사본을 통해 과거 우리는 볼 것이다, 그러나 대부분의 경우이 문제가 발생 :

<?php 
$cfg['blowfish_secret'] = 'ireallylikemysportsteamandhopetheywin'; 

$i = 0; 
$i++; 
$cfg['Servers'][$i]['auth_type'] = 'cookie'; 
$cfg['Servers'][$i]['host'] = 'localhost'; 
$i++; 
$cfg['Servers'][$i]['AllowNoPassword'] = false; 

를이 경우, 두 번째 $i++;은 없어야합니다.