팁/튜토리얼

클릭 할때마다 조회수 증가

2015.10.11 04:29
1,964
0

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;
  }


이부분까지 주석처리하거나 삭제하시면 됩니다.

https://xe1.xpressengine.com/qna/23069751

댓글 6