라이믹스 최신버전에서 "바로 업로드 에드온" 사용시
글 작성창에 이미지 업로드시 파일 첨부 안되고 소스보면 <img src="data:image/png;base64, 이런 긴 코드가 작성되는 경우

해결 방법을 윤삼님이 올려 주셨네요.
/addons/baro_upload/js/_ckeditor.js 파일에서 아래 부분을 찾아서
if ( data.getTypes().indexOf('Files') < 0 ) {
return;
}
아래 부분으로 수정하면 됩니다.
if ( data.getTypes().indexOf('Files') < 0 ) {
var img_regex = /^<img[^>]+src=[\"']?([^>\"']+)[\"']?[^>]*>?/;
var img_result = img_regex.exec(event.data.dataValue);
if ( img_result.length ) {
event.stop();
var dropped_file = getFileObjByDataURL(img_result[1]);
var notification = event.editor.showNotification('파일 업로드 중...', 'progress', 0);
form_data.append('Filedata', dropped_file);
procFileUpload(form_data, dropped_file.type, notification, event);
}
return;
}

수정 파일 첨부합니다.
Tip이 도움이 되었다면 댓글과 평가 부탁합니다.
Tip에 대한 궁금한 점은 댓글로 남겨 주시면 성심껏 답변 드립니다. 
