[CKEditor 3.4] 그누보드4에 적용하기 > 기술자료 | 해피정닷컴

[CKEditor 3.4] 그누보드4에 적용하기 > 기술자료

본문 바로가기

사이트 내 전체검색

[CKEditor 3.4] 그누보드4에 적용하기 > 기술자료

Editor [CKEditor 3.4] 그누보드4에 적용하기

페이지 정보


본문

1. 먼저 ckeditor(위지윅 에디터)를 다운 받습니다.
    ckeditor - http://ckeditor.com/download
다운받은 ckeditor를 압축 푼뒤 업로드 합니다.

그누보드 4.x / ckeditor


2. 그누보드 4.x / skin / board / basic / write.skin.php  4줄
[ 원본 ]
if ($is_dhtml_editor) {
    include_once("$g4[path]/lib/cheditor4.lib.php");
    echo "<script src='$g4[cheditor4_path]/cheditor.js'></script>";
    echo cheditor1('wr_content', '100%', '250');
}

[수정 ]
if ($is_dhtml_editor) {
    //include_once("$g4[path]/lib/ckeditor.lib.php");
    echo "<script src='$g4[path]/ckeditor/ckeditor.js'></script>";
    //echo ckeditor1('wr_content', '100%', '250');
}


3. 그누보드 4.x / skin / board / basic / write.skin.php 130라인
[ 원본 ]
        <? if ($is_dhtml_editor) { ?>
            <?=cheditor2('wr_content', $content);?>

[ 수정 ]
        <?php if ($is_dhtml_editor) { ?>
            <?php //echo ckeditor2('wr_content', $content); ?>
            <textarea id="wr_content" name="wr_content" class="tx" required style='width:100%; word-break:break-all;' rows="10" title="내용"><?php echo $content; ?> </textarea>
            <script type="text/javascript">
                CKEDITOR.replace('wr_content',
                {
                startupFocus : false,  // 자동 focus 사용할때는  true
                skin: 'v2', //에디터 스킨 (kama, office2003, v2)  
                customConfig : '<?php echo $g4[path]; ?>/ckeditor/config.js', //커스텀설정js파일위치
                filebrowserUploadUrl: '<?php echo $g4[path]; ?>/ckeditor/upload.php?type=Files',
                filebrowserImageUploadUrl: '<?php echo $g4[path]; ?>/ckeditor/upload.php?type=Images',
                filebrowserFlashUploadUrl: '<?php echo $g4[path]; ?>/ckeditor/upload.php?type=Flash'
                }
            );
            </script>


4. 그누보드 4.x / skin / board / basic / write.skin.php  339라인
[ 원본 ]
    if ($is_dhtml_editor) echo cheditor3('wr_content');

[ 수정 ]
    //if ($is_dhtml_editor) echo cheditor3('wr_content');


5. ckeditor 환경설정 변경
https://www.happyjung.com/bbs/board.php?bo_table=lecture&wr_id=1110

그누보드 4.x / ckeditor / config.js 파일 내용을 교체합니다.


6. ckeditor 에서 업로드 가능하도록  upload.php 파일을 추가합니다.



6-1. 그누보드 / data / ckeditor / image  폴더를 생성합니다.
ckeditor 와 ckeditor / image 폴더의 퍼미션을 777 로 변경합니다.


6-2. 그누보드 4.x / ckeditor / upload.php 파일을 생성후 아래 내용을 삽입합니다.

※ 중복파일 체크 및 파일 이름이 한글이거나 공백이 포함 된 경우 오류발생하는 미완성 입니다. ※

<?php
include_once("_common.php");
$up_url = '/data/ckeditor/image'; // 기본 업로드 URL
$up_dir = '../data/ckeditor/image'; // 기본 업로드 폴더
// 업로드 DIALOG 에서 전송된 값
$funcNum = $_GET['CKEditorFuncNum'] ;
$CKEditor = $_GET['CKEditor'] ;
$langCode = $_GET['langCode'] ;
if(isset($_FILES['upload']['tmp_name']))
{
    $file_name = $_FILES['upload']['name'];
    $ext = strtolower(substr($file_name, (strrpos($file_name, '.') + 1)));
    if ('jpg' != $ext && 'jpeg' != $ext && 'gif' != $ext && 'png' != $ext && 'swf' != $ext)
    {
        echo '허용되지 않은 확장자입니다.';
        return false;
    }
    $save_dir = sprintf('%s/%s', $up_dir, $file_name);
    $save_url = sprintf('%s/%s', $up_url, $file_name);
    if (move_uploaded_file($_FILES["upload"]["tmp_name"],$save_dir))
        echo "<script>window.parent.CKEDITOR.tools.callFunction($funcNum, '$save_url', '업로드완료');</script>";
}
?>


6-3. 이미지 삽입 텍스트창 내용 변경
https://www.happyjung.com/bbs/board.php?bo_table=lecture&wr_id=1166


7. 그누보드 4.x / bbs / write_update.php  7~8줄을 주석처리합니다.
[ 원본 ]
if (substr_count($wr_content, "&#") > 50) {
    alert("내용에 올바르지 않은 코드가 다수 포함되어 있습니다.");
    exit;
}

[ 수정 ]
if (substr_count($wr_content, "&#") > 50) {
    //alert("내용에 올바르지 않은 코드가 다수 포함되어 있습니다.");
    //exit;
}



참고자료
http://www.autoboy.pe.kr/130 
 

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 76 페이지
  • RSS
기술자료 목록
1141
HTML   24540  2012-05-02 20:26 ~ 2018-02-23 22:53  
1140
그누보드   18470  2012-05-01 22:12  
1139
메이크샵   26702  2012-05-01 10:58  
1138
HTML   16035  2012-04-29 17:33 ~ 2019-06-18 10:16  
1137
HTML   24829  2012-04-28 23:27 ~ 2018-06-20 23:57  
1136
ClassicASP   20202  2012-04-27 02:31  
1135
JavaScript   15340  2012-04-26 12:06 ~ 2012-05-26 00:00  
1134
전자결제   31544  2012-04-26 00:36  
1133
ClassicASP   53665  2012-04-24 17:51 ~ 2013-05-12 00:00  
1132
JavaScript   40672  2012-04-24 00:22  
1131
메이크샵   15001  2012-04-23 17:44 ~ 2013-08-16 00:00  
1130
메이크샵   11859  2012-04-23 17:44  
1129
그누보드   10923  2012-04-23 11:44  
1128
일반   13864  2012-04-22 18:38  
1127
Adobe   12194  2012-04-22 15:43  
1126
메이크샵   10882  2012-04-20 23:32  
1125
JavaScript   36289  2012-04-19 23:06 ~ 2012-06-22 00:00  
1124
ClassicASP   15240  2012-04-19 02:17  
1123
etc언어   23896  2012-04-18 18:32 ~ 2016-11-07 00:00  
1122
ClassicASP   15299  2012-04-18 13:41 ~ 2016-03-30 00:00  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2025 해피정닷컴. All Rights Reserved.