?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

안녕하세요.


ipTIME 에서 나온 NAS 에다가 다올CMS 를 설치하면 게시판 글쓰기 화면의 첨부파일 버튼이 동작하지 않는 버그가 있습니다. 이를 임시로라도 해결하는 방법을 제시하고자 합니다.


첫번째. 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("&");
};


네번째. 세번째 까지 완료된 swfupload.js 파일을 modules\editor\tpl\js 폴더로 업로드하기


※ 참고: XpressEngine 최신버전의 경우 수정한 파일을 swfupload.min.js 라는 이름으로 파일변경 후 업로드하셔야 합니다.


List of Articles
번호 제목 글쓴이 날짜 조회 수
공지 다올 사용팁 게시판 공지 DAOL CMS 2013.12.25 1522
» ipTIME NAS 에 다올CMS 설치시 첨부파일 버튼 미작동문제 해결하기 사이버짱 2014.11.06 1069
Board Pagination Prev 1 Next
/ 1