함께 설치하면 좋은 모듈
sejin7940_readed_count - 조회수 기능 확장 애드온 ver. 1.6
http://www.xpressengine.com/index.php?mid=download&search_keyword=%EC%A1%B0%ED%9A%8C%EC%88%98&package_srl=19960240
click 할때 마다 조회수 증가하기
xe - modules - document - document.controller.php
=================================================
xe - modules - document - document.controller.php 열고
line 846쯤에
// Pass if read count is increaded on the session information
if($_SESSION['readed_document'][$document_srl]) return false;
// Pass if the author's IP address is as same as visitor's.
if($oDocument->get('ipaddress') == $_SERVER['REMOTE_ADDR'])
{
$_SESSION['readed_document'][$document_srl] = true;
return false;
}
이 부분을 모두 주석처리 혹은 삭제(자기가 쓴글은 제외입니다.)
==================================================
만약 자기가 쓴 글을 자기가 클릭할때도 조회수가 올라가게 할려면
위 부분 바로 아래에
// Pass ater registering sesscion if the author is a member and has same information as the currently logged-in user.
if($member_srl && $logged_info->member_srl == $member_srl) {
$_SESSION['readed_document'][$document_srl] = true;
return false;
}
이부분까지 주석처리하거나 삭제하시면 됩니다.
xe\modules\document\document.controller.php
802라인 부근에서 아래 부분을 주석 처리
/**
if($_SESSION['readed_document'][$document_srl]) return false;
// Pass if the author's IP address is as same as visitor's.
if($oDocument->get('ipaddress') == $_SERVER['REMOTE_ADDR'])
{
$_SESSION['readed_document'][$document_srl] = true;
return false;
}
**/
자기사 쓴 글에 대해서도 조회수가 올라가게 수정하려면
// Pass ater registering sesscion if the author is a member and has same information as the currently logged-in user.
if($member_srl && $logged_info->member_srl == $member_srl) {
$_SESSION['readed_document'][$document_srl] = true;
return false;
}
여기까지 주석 처리 해주시거나 삭제
출처 : http://www.vnote.kr/XPRESSENGINE/303