CodeIgniter Upload and “You did not select a file to upload”
This problem with error message You did not select a file to upload is originally caused by the fact that you are trying to upload multiple files but do_upload() without parameters is used in the controlled. If this is the case, try specifying the name of your input, in the following way.
if you are using:
$this->upload->do_upload(); replace it by:
$this->upload->do_upload("input_field_name"); Then, try again.
Related searches:
- codeigniter video upload
- codeigniter You did not select a file to upload
- you did not select a file to upload codeigniter
- codeigniter upload video
- video upload in codeigniter
- upload videos in codeigniter
- video upload codeigniter
- upload videos using codeigniter
- how to upload video in codeigniter
- how to upload a video in codeigniter




