묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
조회수 설정 문의 합니다.
2015.08.21 18:25
조회수 애드온 없이
페이지 동일 IP제한 없이 한번 열면 조회수 1씩 증가 하게 하려면 어떻게 하나요 ??
#sejin7940 님 조회수 애드온 가끔씩 오류가 납니다.
https://www.xpressengine.com/index.php?mid=download&package_id=19960240
태그 연관 글
- [2015/09/07] 묻고답하기 misol's mobile board skin에서 이미지 확대
- [2014/11/17] Learn XECon 2014 - XE Hack
- [2014/05/19] Blog XE 오픈 세미나 - XE 모듈 개발 1회차 리뷰
- [2011/05/26] 묻고답하기 상담게시판 질문입니다.(sejin7840님 스킨) *3
- [2011/02/15] 묻고답하기 관리자만 검색창이 보이게 하고 싶습니다 *1
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;
}
이부분까지 주석처리하거나 삭제하시면 됩니다.