| 글쓰기에서 3개 이상의 첨부파일을 업로드 하려면 어떻게 해야 하나요? |
= 글쓰기에서 첨부파일 업로드 개수 추가하는 방법 =
별도의 모델 파일을 설정하지 않으셨다면 게시판 스킨 기본 모델 : mangboard/skins/bbs_skin/includes/skin-model.php 파일에서 글작성 모델에 해당하는 아래 코드를 찾아 빨간색으로 표시된 파일 코드를 아래로 추가하시면 됩니다. $desktop_model['write'] = ' {"tpl":"tag","tag_name":"table","type":"start","name":"글쓰기","width":"20%,*","mobile_width":"80px,*","class":"table table-write"}, {"field":"fn_category1","name":"카테고리","width":"100px","type":"category1","class":"category"}, {"field":"fn_user_name","name":"작성자","width":"150px","mobile_width":"100px","modify":"text_static","maxlength":"20","display_check":"login:none","required":"(*)","class":"user_name"}, {"field":"fn_passwd","name":"비밀번호","width":"150px","mobile_width":"100px","display_check":"login:hide","maxlength":"16","type":"password","required":"(*)","class":"passwd"}, {"field":"fn_title","name":"제목","width":"100%","required":"(*)","class":"text-left","required_error":"MSG_FIELD_EMPTY_ERROR2"}, {"field":"fn_content","name":"내용","width":"100%","height":"360px","type":"content","class":"content","colspan":"2","td_class":"content-box","required_error":"MSG_FIELD_EMPTY_ERROR2"}, {"field":"fn_tag","name":"태그","width":"100%","class":"tag","description":"<br>(태그를 입력하는 공간입니다)"}, {"field":"fn_file1","name":"파일1","width":"160px","type":"file","class":"file"}, {"field":"fn_file2","name":"파일2","width":"160px","type":"file","class":"file"}, {"field":"fn_file3","name":"파일3","width":"160px","type":"file","class":"file"}, {"field":"fn_file4","name":"파일4","width":"160px","type":"file","class":"file"}, {"type":"kcaptcha_img","name":"자동등록방지","width":"70px","height":"30px","class":"kcaptcha","level":{"sign":"<","grade":"1"},"modify":"none","description":"<br>(자동등록방지 숫자를 순서대로 입력해 주세요)"}, {"tpl":"tag","tag_name":"table","type":"end"} ';
* File Upload (Write) - 파일 업로드는 개수에 상관없이 추가한 만큼 업로드 파일이 추가됩니다 - "field"는 "fn_file1, fn_file2, fn_file3, ......., fn_file10" 와 같은 순번으로 입력 {"field":"fn_file1","name":"파일1","width":"160px","type":"file","class":"file"}, {"field":"fn_file2","name":"파일2","width":"160px","type":"file","class":"file"}, {"field":"fn_file3","name":"파일3","width":"160px","type":"file","class":"file"}, {"field":"fn_file4","name":"파일4","width":"160px","type":"file","class":"file"},
....
{"field":"fn_file10","name":"파일10","width":"160px","type":"file","class":"file"},
* File Download (View) {"field":"file_download","name":"첨부파일","width":"100px","type":"file_download","class":"file-download"}, |
| 글쓰기에서 자동등록방지 항목을 삭제하려면 어떻게 해야 하나요? |
= 글쓰기에서 자동등록방지 항목 삭제하는 방법 =
별도의 모델 파일을 설정하지 않으셨다면 게시판 스킨 기본 모델 : mangboard/skins/bbs_skin/includes/skin-model.php 파일에서 글작성 모델에 해당하는 아래 코드를 찾아 빨간색으로 표시된 자동등록방지 모델 코드를 찾아 삭제하시면 됩니다. $desktop_model['write'] = ' {"tpl":"tag","tag_name":"table","type":"start","name":"글쓰기","width":"20%,*","mobile_width":"80px,*","class":"table table-write"}, {"field":"fn_category1","name":"카테고리","width":"100px","type":"category1","class":"category"}, {"field":"fn_user_name","name":"작성자","width":"150px","mobile_width":"100px","modify":"text_static","maxlength":"20","display_check":"login:none","required":"(*)","class":"user_name"}, {"field":"fn_passwd","name":"비밀번호","width":"150px","mobile_width":"100px","display_check":"login:hide","maxlength":"16","type":"password","required":"(*)","class":"passwd"}, {"field":"fn_title","name":"제목","width":"100%","required":"(*)","class":"text-left","required_error":"MSG_FIELD_EMPTY_ERROR2"}, {"field":"fn_content","name":"내용","width":"100%","height":"360px","type":"content","class":"content","colspan":"2","td_class":"content-box","required_error":"MSG_FIELD_EMPTY_ERROR2"}, {"field":"fn_tag","name":"태그","width":"100%","class":"tag","description":"<br>(태그를 입력하는 공간입니다)"}, {"field":"fn_file1","name":"파일1","width":"160px","type":"file","class":"file"}, {"field":"fn_file2","name":"파일2","width":"160px","type":"file","class":"file"}, {"type":"kcaptcha_img","name":"자동등록방지","width":"70px","height":"30px","class":"kcaptcha","level":{"sign":"<","grade":"1"},"modify":"none","description":"<br>(자동등록방지 숫자를 순서대로 입력해 주세요)"}, {"tpl":"tag","tag_name":"table","type":"end"} ';
※ 댓글 작성시에서 자동등록방지 기능을 삭제 하시려면 댓글 모델인 $desktop_model['comment_write'] 코드에서 위의 코드를 찾아 삭제하시면 됩니다. |
| [카테고리1] 글쓰기에서 태그 항목을 삭제하려면 어떻게 해야 하나요? |
= 글쓰기에서 태그 항목 삭제하는 방법 =
별도의 모델 파일을 설정하지 않으셨다면 게시판 스킨 기본 모델 : mangboard/skins/bbs_skin/includes/skin-model.php 파일에서 글작성 모델에 해당하는 아래 코드를 찾아 빨간색으로 표시된 태그 항목 모델 코드를 찾아 삭제하시면 됩니다. $desktop_model['write'] = ' {"tpl":"tag","tag_name":"table","type":"start","name":"글쓰기","width":"20%,*","mobile_width":"80px,*","class":"table table-write"}, {"field":"fn_category1","name":"카테고리","width":"100px","type":"category1","class":"category"}, {"field":"fn_user_name","name":"작성자","width":"150px","mobile_width":"100px","modify":"text_static","maxlength":"20","display_check":"login:none","required":"(*)","class":"user_name"}, {"field":"fn_passwd","name":"비밀번호","width":"150px","mobile_width":"100px","display_check":"login:hide","maxlength":"16","type":"password","required":"(*)","class":"passwd"}, {"field":"fn_title","name":"제목","width":"100%","required":"(*)","class":"text-left","required_error":"MSG_FIELD_EMPTY_ERROR2"}, {"field":"fn_content","name":"내용","width":"100%","height":"360px","type":"content","class":"content","colspan":"2","td_class":"content-box","required_error":"MSG_FIELD_EMPTY_ERROR2"}, {"field":"fn_tag","name":"태그","width":"100%","class":"tag","description":"<br>(태그를 입력하는 공간입니다)"}, {"field":"fn_file1","name":"파일1","width":"160px","type":"file","class":"file"}, {"field":"fn_file2","name":"파일2","width":"160px","type":"file","class":"file"}, {"type":"kcaptcha_img","name":"자동등록방지","width":"70px","height":"30px","class":"kcaptcha","level":{"sign":"<","grade":"1"},"modify":"none","description":"<br>(자동등록방지 숫자를 순서대로 입력해 주세요)"}, {"tpl":"tag","tag_name":"table","type":"end"} '; |
| [카테고리2] 글목록에서 제목 글자 길이를 늘리고 싶은데 어디서 수정해야 하나요? |
= 글목록에서 제목 글자 길이 늘리는 방법 =
별도의 모델 파일을 설정하지 않으셨다면 게시판 스킨 기본 모델 : mangboard/skins/bbs_skin/includes/skin-model.php 파일에서 글목록 모델에 해당하는 아래 코드를 찾아 빨간색으로 표시된 maxlength 속성을 수정 하시면 됩니다.
[데스크탑 글목록 모델] $desktop_model['list'] = ' {"type":"list_check","width":"50px","level":"10","class":"list_check"}, {"field":"fn_pid","name":"번호","width":"50px","class":"num","type":"pid","class":"pid","responsive":"mb-hide-mobile mb-hide-tablet"}, {"field":"fn_title","name":"제목","width":"","type":"title","maxlength":"40","maxtext":"..","td_class":"text-left"}, {"field":"fn_user_name","name":"작성자","width":"115px","class":"user_name"}, {"field":"fn_content","name":"내용","type":"search"}, {"field":"fn_reg_date","name":"날짜","width":"90px","type":"date","class":"date","responsive":"mb-hide-mobile"}, {"field":"fn_hit","name":"조회","width":"60px","class":"hit","responsive":"mb-hide-mobile mb-hide-tablet"} '; [모바일 글목록 모델] $mobile_model['list'] = ' {"type":"list_check","width":"50px","level":"10","class":"list_check"}, {"field":"fn_title","name":"제목","width":"","type":"title_img","maxlength":"20","maxtext":"..","td_class":"list-title text-left"}, {"field":"fn_user_name","name":"작성자","type":"search"}, {"field":"fn_content","name":"내용","type":"search"} '; |
| 최근 게시물 수정은 어디서 해야 하나요? |
= 최근 게시물 위젯 =
최근 게시물 PHP 파일 mangboard/plugins/widgets/latest_mb_basic/latest_mb_basic.php
최근 게시물 CSS 파일mangboard/plugins/widgets/latest_mb_basic/css/style.css |
| 웹진 게시판을 설정하려면 어떻게 해야 하나요? |
= 망보드 게시판 Shortcode, 스킨, 모델 설정방법 =
* 자료실 게시판: [mb_board name="board1" style=""] └ 웹진 게시판: webzine 모델 설정 └ 폼 게시판: form 모델 설정 └ 자주 묻는 질문 게시판: faq 모델 설정
* 갤러리 게시판: [mb_board name="board1" list_type="gallery" style=""]
* 캘린더 게시판: [mb_board name="board1" list_type="calendar" style=""]
* 최근 게시물: [mb_latest name="board1" title="최근 게시물" list_size="5" style=""]
망보드에서는 다른 게시판과 달리 스킨의 기능적인 부분을 모델이 담당하고 있기 때문에 자료실 게시판을 웹진, 폼, 자주 묻는 질문 게시판으로 변경하기 위해서는 스킨이 아닌 모델을 설정해야 합니다. 망보드의 스킨은 디자인 부분만 담당하고 있기 때문에 1개의 스킨으로 모든 관리자 기능을 비롯해 자료실, 갤러리, 캘린더, 웹진, 폼, 자주 묻는 질문 게시판을 지원하고 있습니다 |
| 망보드 게시판을 추가하려면 어떻게 해야 하나요? |
= 망보드 게시판을 추가하는 방법 =
* “Mangboard>게시판 관리” 메뉴를 클릭하고 “게시판 추가” 버튼을 클릭합니다 * 게시판 이름을 입력하고 기타 게시판 옵션들을 설정하고 “확인” 버튼을 클릭해서 게시판을 추가 합니다 * 게시판 목록에 추가된 게시판의 이름과 워드프레스 페이지에 추가할 수 있는 Shortcode 가 나타납니다 * 원하는 형태의 Shortcode를 복사한 다음 관리자 메뉴 “페이지>새 페이지 추가” 메뉴를 클릭합니다 * 페이지 제목을 입력하고 복사한 Shortcode를 에디터 텍스트 영역에 복사한 다음 “공개하기” 버튼을 클릭하면 망보드 게시판이 워드프레스 페이지에 등록됩니다 * 등록된 페이지를 홈페이지 메뉴에 추가합니다 |
| 망보드 설치에 필요한 서버 환경은 어떻게 되나요? |
= 망보드 설치에 필요한 환경 =
* WordPress 3.8 or greater * PHP version 5.2.4 or greater * MySQL version 5.0 or greater |
| 망보드 회원 권한 설정은 어떻게 되나요? |
= 망보드 회원 레벨 =
* 비회원 : Level 0 * 회 원 : Level 1~10 * 관리자 : Level 10 |