Libraries/upload.php 에서 아래줄 삭제 => 파일크기를 킬로바이트로 바꾸는 부분
더보기
// Convert the file size to kilobytes
if ($this->file_size > 0)
{
$this->file_size = round($this->file_size/1024, 2);
}
스토리지에 저장되는 파일이름에 확장자를 붙이는 부분 제거
더보기
function set_filename($path, $filename)
{
if ($this->encrypt_name == TRUE)
{
mt_srand();
$filename = md5(uniqid(mt_rand())).$this->file_ext;
}