You must specify an overwrite configuration parameter
$config['upload_path'] = './uploads/'; $config['overwrite'] = TRUE; $this->load->library('upload', $config); $this->upload->initialize($config);
See Documentation for download settings.
Preference: Rewrite
Default value: FALSE
Parameters: TRUE / FALSE (logical)
Description: If set to true, if the file with the same name as the one you are loading, it will be overwritten. If set to false, the number will be added to the file name if another with the same name exists.
source share