[그누보드] 접속자 관련 관리자 표기 방법
페이지 정보
작성자 관리자 작성일15-07-06 08:42 조회2,274회 댓글0건본문
lib/connect.lib.php 에서 다음 부분을 변경
수정전 :
$sql = " select sum(IF(mb_id<>'',1,0)) as mb_cnt, count(*) as total_cnt from $g4[login_table] where mb_id <> '$config[cf_admin]' ";
수정후 :
$sql = " select sum(IF(mb_id<>'',1,0)) as mb_cnt, count(*) as total_cnt from $g4[login_table] ";
where mb_id <> '$config[cf_admin]' <-- 이부분이 제거 되는것이다.
간혹 스킨마다 connect.lib.php 파일에 위의 줄 말고 그 바로 아래 이름출력을 위해 한줄 더 있는경우도
있는데 그럴경우 마찬가지로 그 부분에서도 where mb_id <> '$config[cf_admin]' 을 삭제하면 된다.
수정전 :
$sql = " select sum(IF(mb_id<>'',1,0)) as mb_cnt, count(*) as total_cnt from $g4[login_table] where mb_id <> '$config[cf_admin]' ";
수정후 :
$sql = " select sum(IF(mb_id<>'',1,0)) as mb_cnt, count(*) as total_cnt from $g4[login_table] ";
where mb_id <> '$config[cf_admin]' <-- 이부분이 제거 되는것이다.
간혹 스킨마다 connect.lib.php 파일에 위의 줄 말고 그 바로 아래 이름출력을 위해 한줄 더 있는경우도
있는데 그럴경우 마찬가지로 그 부분에서도 where mb_id <> '$config[cf_admin]' 을 삭제하면 된다.
댓글목록
등록된 댓글이 없습니다.