Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $config['upload_path'] = FCPATH.'public/uploads/';
  2. $config['allowed_types'] = 'gif|jpg|png';
  3. $config['overwrite'] = true;
  4. $this->load->library('upload', $config);
  5. $this->upload->initialize($config);
  6. if ( ! $this->upload->do_upload('file'))
  7. {
  8. print_r($this->upload->display_errors());
  9. }
  10.  
  11. Message: is_uploaded_file() expects parameter 1 to be string, array given
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement