묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
첨부파일 용량 제한, 더 적게 하고 싶어요.
2012.12.06 15:54
1mb이하로는 소수점이라고 지정이 안되더라구요ㅠㅠ
직접 파일에서 수정해야할까요? 0.1mb 정도로 제한을 줘서 그림 한두장 겨우 올릴 수 있게 하려고 하는데
어떻게 하면 좋을까요 방법 좀 알려주시면 감사하겠습니다ㅠㅠ
댓글 1
-
송동우
2012.12.06 16:08
-
yullaha
2012.12.06 16:23
allowed_filesize * 1024 * 1024; 의 1024 부분을 둘다 고쳐주면 되나요? 제 xe 버전이 1.5.3.7이라 네번째줄은 if($allowed_filesize < filesize($file_info['tmp_name'])) return new 으로 조금 다르네요! 숫자 부분만 고쳐주면 맞는것인지 궁금합니다ㅠㅠ제가 구조를 잘 몰라서..!
xe - modules - file - file.controller.php 열고
line 538 쯤에
$allowed_filesize = $config->allowed_filesize * 1024 * 1024;
$allowed_attach_size = $config->allowed_attach_size * 1024 * 1024;
// An error appears if file size exceeds a limit
if($allowed_filesize < filesize($file_info['tmp_name'])) return new Object(-1, 'msg_exceeds_limit_size');
여기서 원하는 대로 수정해보세요......