본문 바로가기
관심종목/GNU

phpmyadmin 설치직후 tracking 에러

by 신의손길 2012. 5. 23.

$cfg['Servers'][$i]['tracking'] not OK [ Documentation ]

“The additional features for working with linked tables have been deactivated. To find out why click here.”

If you get above message or $cfg['Servers'][$i]['tracking'] not OK [ Documentation ] message, there may be some errors. I find that many complex solutions exist on the web, and i find a much simple way to solve the problem:

Open the config.inc.php file and find the follow line, if it does not exist, add it to the file. Then everything goes well~~

$cfg['Servers'][$i]['tracking'] = ‘pma_tracking’;

http://www.yflying.com/cfgserversitracking-not-ok-documentation/


로그인 후 화면 하단에 tracking 관련 오류가 보인다.

해결법은 위의 내용데로 config.inc.php 내용을 수정해야 된다.

일반적인 우분투의 경로 /etc/phpmyadmin/config.inc.php

보라색 박스의 내용과 유사한 줄이 여럿있다. 연속적인 마지막줄에 $cfg['~ 로 시작하는 내용을 추가해준다.

local/phpmyadmin 은 여전히 같은 메세지지만 이는 캐싱때문이다. 다른 브라우저나 캐시를 삭제하고 다시보면 해결되었을것이다.