Problem :
When I’m uploading images in codeigniter, it’s working great. But when I try to update the images, codeigniter automatically adds 1 at the end of each image. Which will add unused images in my images directory. How can I overwrite the existing image instead of giving it a new name and saving it?
Solution :
You should supply the overwrite config parameter
$config['upload_path'] = './uploads/'; $config['overwrite'] = TRUE; $this->load->library('upload', $config); $this->upload->initialize($config);
Preference: overwrite
Default Value: FALSE
Options: TRUE/FALSE (boolean)
Description: If set to true, if a file with the same name as the one you are uploading exists, it will be overwritten. If set to false, a number will be appended to the filename if another with the same name exists.