MEMO
클릭시 마다 조회수 증가(1.7.3.6)

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

 

여기까지 주석 처리 해주시거나 삭제

이 게시물을

공유하기

SEARCH

MENU NAVIGATION