분류 전체보기
-
pdf 모바일에서 다운로드시 에러나는경우그누보드 2020. 6. 1. 11:28
/bbs/download.php //84~97번 까지 주석 후 코드 추가 (헤더 주석처리) // Must be fresh start if( headers_sent() ) die('Headers Already Sent'); // Required for some browsers if(ini_get('zlib.output_compression')) ini_set('zlib.output_compression', 'Off'); // Parse Info / Get Extension $fsize = filesize($filepath); $path_parts = pathinfo($filepath); $ext = strtolower($path_parts["extension"]); // Determine Content T..
-
-
스마트 에디터 기본 글씨 크기 지정그누보드 2020. 6. 1. 11:26
그누보드 /plugin/editor/smarteditor2/config.js (function($){ $(document).ready(function() { $(".smarteditor2").each( function(index){ var get_id = $(this).attr("id"); if( !get_id || $(this).prop("nodeName") != 'TEXTAREA' ) return true; nhn.husky.EZCreator.createInIFrame({ oAppRef: oEditors, elPlaceHolder: get_id, sSkinURI: g5_editor_url+"/SmartEditor2Skin.html", htParams : { bUseToolbar : true, // 툴..
-
그누보드 search.skin.php 이미지 출력그누보드 2020. 6. 1. 11:25
include_once(G5_LIB_PATH.'/thumbnail.lib.php');//썸네일 라이브러리 //썸네일 이미지 생성 $thumb_info = get_list_thumbnail($search_table[$idx], $list[$idx][$i][wr_id],105,79); $sch_thumb = $thumb_info['src']; //파일명 조회 $file_info['file'] = get_file($search_table[$idx], $list[$idx][$i][wr_id]); $sch_file=$file_info[file][0]['source'];