안녕하세요 초보 코더 입니다 ^^;;
파일 업로드 클래스 사용시 ppt, xls, doc 등 의 파일타입은 지정하여도 업로드가 되질 않는데요.
코드는 아래와 같습니다. 혹시 제가 뭘 잘 못했을까요 ㅠㅠ;;; 고수님들께 질문 드립니다.
(근데 제자리에서는 업로드가 잘됩니다;;; 이게 더 당황 스럽습니다;;;) 잘못적었습니다. 동일증상입니다.
아래와같은 메세지가 뜹니다.
jpg 등 이미지는 업로드가 되요...
function upload_receive(){
$config['upload_path'] ='./static/sr_attach';
$config['allowed_types'] = 'txt|ppt|pptx|xls|xlsx|doc|docx|hwp|gif|jpg|png|sql';
$config['max_size'] = '1000000';
$this->load->library('upload', $config);
var_dump($user_upload_file);
if ( ! $this->upload->do_upload("user_upload_file"))
{
echo "";
}
else
{
$this->load->helper('url');
$upload_data = $this->upload->data();
$this->manage_sr_model->add_attachfiles($this->input->post('sr_id'),$upload_data);
redirect('/manage_sr/review_one/'.$this->input->post('sr_id'));
}
}
간혹 확장자는 xls인데 mime타입이 다른 경우가 있습니다.