you did not select a file to upload-  This error shows that you didnt mention any fieldname for the uploader class.
By default codeigniter uploader class will look for "user_file" as a field name,if you want to change that default to your own fieldname,then you have to pass it as parameter to the uploader class
Example:

$file="Ur field name";
$this->upload->do_upload($file) ;