Welcome Guest, Not a member yet? Register   Sign In
Codeigniter 3 File Upload Issue
#2

Use this and see what is causing the problem

PHP Code:
$this->upload->display_errors() 

This will get the error messages that where set by CI during upload

PHP Code:
if($this->upload->do_upload('pdocupload'))
{
 
  echo "file upload success";
}
else
{
 
  echo "file upload failed";
 
  echo $this->upload->display_errors();

Reply


Messages In This Thread
Codeigniter 3 File Upload Issue - by codeigniterd - 06-26-2017, 01:11 PM
RE: Codeigniter 3 File Upload Issue - by Martin7483 - 06-27-2017, 05:07 AM
RE: Codeigniter 3 File Upload Issue - by InsiteFX - 06-27-2017, 11:27 AM
RE: Codeigniter 3 File Upload Issue - by rtenny - 06-28-2017, 02:35 AM
RE: Codeigniter 3 File Upload Issue - by PaulD - 06-28-2017, 12:39 PM



Theme © iAndrew 2016 - Forum software by © MyBB