function upload_cover(){
$config_cover['upload_path'] = 'img/blog/';
$config_cover['allowed_types'] = 'gif|jpg|png|tif';
get_instance()->load->library('upload', $config_cover);
if($this->upload->do_upload('myFile') )
{
$upload_data = $this->upload->data();
$path = 'img/blog/'.$upload_data['file_name'];
return $path;
}
}
function upload_file(){
$config_file['upload_path'] = 'img/blog/';
$config_file['allowed_types'] = 'doc|docx|pdf|txt|xls|xlsx|ppt|pptx';
$this->upload->initialize($config_file);
if ($_FILES['myDoc']) {
if($this->upload->do_upload('myDoc'))
{
$upload_data = $this->upload->data();
$path = 'document/blog/'.$upload_data['file_name'];
return $path;
}
}
}
This code is working properly on my computer but when I deploy it on my server only upload_cover
works, and not upload_file
. Why?