스마트에디터 2.0, smarteditor2, 사진 업로드 용량 제한
작성일 20-01-07 13:34
페이지 정보
작성자서방님 조회 148회 댓글 0건본문
smarteditor2/photo_uploader/popup/attach_photo.js 파일은
네이버 스마트 에디터2 에 들어가 있는 기본 코드 파일 입니다만, 현재 사용되고 있지 않는 파일입니다.
만약 extend 폴더에 용량 설정 파일이 없는 예전 버전이라면 이렇게 하면 됩니다.
수정 파일 : plugin/editor/smarteditor2/photo_uploader/popup/php/UploadHandler.php
'post_max_size' => 'The uploaded file exceeds the post_max_size directive in php.ini',
28번째 줄 근처에서 여기는 이렇게 수정..
'post_max_size' => '허용용량(2M)초과',
$post_max_size = $this->get_config_bytes(ini_get('post_max_size'));
365번째 줄 근처에서 여기는 이렇게 수정..
$post_max_size = $this->get_config_bytes('2M');
댓글목록
등록된 댓글이 없습니다.