묻고답하기
파일 다운로드 횟수 확인
2016.01.18 17:31
안녕하세요 XE를 이용해서 홈페이지를 제작하고 있습니다.
문의드릴 바는 다음과 같습니다.
홈페이지에 upload한 파일의 다운로드 횟수를 확인 하고 싶은데요. 관리자가 파일 다운로드 횟수를 파악할 수 있는 방법이 있을까요?
댓글 2
-
mindpainter
2016.01.18 18:54
-
배워서남준다
2016.01.18 18:57
DB files 테이블에 보면 file_srl 이 고유번호이고 upload_target_srl 이 보통 문서번호이고, download_count 가 다운로드 횟수입니다.
어떤 위젯, 모듈에서 정보를 출력하려 하는지 모르지만... db xml에 아래 부분 참고해서 자료가져 오면 됩니다.
<tables>
<table name="documents" />
<table name="files" />
</tables>
<columns>
<column name="documents.*" />
<column name="files.*" />
</columns>
<conditions>
<condition operation="equal" column="documents.document_srl" var="document_srl" pipe="and" />
<condition operation="equal" column="documents.document_srl" default="files.upload_target_srl" pipe="and" />
</conditions>
<navigation>
<index var="sort_index" default="files.download_count" order="order_type" />
<list_count var="list_count" default="20" />
</navigation>또는 모듈이나 위젯등에서 아래 구문 추가한후..
$oFileModel = getModel('file');
$files_info = $oFileModel->getFiles('문서번호');$files_info 의 내용 출력해 보면 됩니다.
관리자> 콘텐츠 > 파일에서 확인 가능 합니다.