묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
비회원도 추천을 할 수 있도록 설정할 수 있나요?
2009.12.17 12:11
현재 비회원은 추천기능을 사용할 수 가 없습니다.
비회원도 추천을 클릭할 수 있도록 수정하는 방법은 없을까요?
1. /modules/document/document.model.php의 line#496쯤에
// 회원이어야만 가능한 기능
if($logged_info->member_srl) {
...
// 추천 버튼 추가
$url = sprintf("doCallModuleAction('document','procDocumentVoteUp','%s')", $document_srl);
$oDocumentController->addDocumentPopupMenu($url,'cmd_vote','./modules/document/tpl/icons/vote_up.gif','javascript');
...
}
위의 "추천 버튼 추가" 부분을 회원이라만의 if 문에서 cut하시고 밑에 "//인쇄 버튼 추가 ..." 위나 아래에 copy하세요
2. /modules/document/document.controller.php의 line#20를 comment 처리하세요. 그러니까 다음과같이 문장 앞에 // 을 달아주세요.
// if(!Context::get('is_logged')) return new Object(-1, 'msg_invalid_request');
이상입니다. 성공하시기를...