웹마스터 팁
ipTIME NAS 에 설치한 XE, 다올CMS 첨부파일 버튼 무반응 해결
2014.11.07 11:20
제조사: EFM networks ipTIME
모델명: NAS-Ⅰ, NAS-Ⅱ, NASⅡe, NAS3, NAS4
해당기능: 펌웨어 내 Apache 서버 & PHP 서비스
첫번째 단계
modules\editor\tpl\js\swfupload.js 파일 수정
두번째 단계
300번째 줄 근처에 아래 2줄 추가
// Private: buildParamString takes the name/value pairs in the post_params setting object // and joins them up in to a string formatted "name=value&name=value" SWFUpload.prototype.buildParamString = function () { var postParams = this.settings.post_params; var paramStringPairs = [];
if (typeof(postParams) === "object") { for (var name in postParams) { if (postParams.hasOwnProperty(name)) { if(postParams[name]){ paramStringPairs.push(encodeURIComponent(name.toString()) + "=" + encodeURIComponent(postParams[name].toString())); } } } }
return paramStringPairs.join("&"); }; |
세번째 단계
XpressEngine
수정한 swfupload.js 파일을 하나 복사하여 swfupload.min.js 으로 파일이름 변경
즉 최종적으로 같은 내용의 swfupload.js, swfupload.min.js 2개파일이 있어야 함.
다올CMS
파일이름 변경 없음
마지막 단계
XpressEngine
modules\editor\tpl\js 폴더안에 swfupload.js, swfupload.min.js 2개파일 업로드
수정한 1개 파일만 업로드하면 파일이 증발된다는 댓글이 있었습니다.
다올CMS
modules\editor\tpl\js 폴더안에 swfupload.js 파일 업로드
※ 2014년 11월 7일자 최종버전에 작성된 글임.
※ 참조 글
http://www.xpressengine.com/qna/22861833
http://www.xpressengine.com/qna/22743406
http://www.iptime.co.kr/~iptime/bbs/view.php?id=qna&no=436070
- [2021/01/21] 묻고답하기 ZBXE VERSION 1.1.5 업그레이드 문의 *1
- [2020/12/09] 묻고답하기 rewrite 모듈에서 특수문자 를 제한하려고합니다.
- [2019/06/11] 묻고답하기 첨부파일 본문 삽입 다운로드 에러 *2
- [2018/09/03] 묻고답하기 제로보드 4 스킨 적용 도와주실 분 계신가요 *1
- [2018/07/13] 묻고답하기 첨부한 파일 링크 텍스트로 추출하는 방법은 무엇인가요? *2