When I upload a photo using CodeIgniter, the name of the image is changed to a random name like \"107fb08f4a11cc37a040237cdcf0e48a.jpg\" for example. I am having trouble showing
Change the
encrypt_name = "false"
Also remember that if this option is set to false then by default the codeigniter framework make the duplicate copies of the filename that are uploaded to the server by adding the integer value in front of the filename. In case you dont want duplicated files on the server, please set the overwrite option to true.
overwrite = true
change :
'encrypt_name' => true,
to:
'encrypt_name' => false,