CodeIgniter Forums
$config['encrypt_name'] not working - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: $config['encrypt_name'] not working (/showthread.php?tid=15347)



$config['encrypt_name'] not working - El Forum - 02-01-2009

[eluser]akkumaru[/eluser]
i tried the upload class with configuration:
Code:
$config['encrypt_name'] = TRUE;

i suppose the config item defined will make the uploaded filename to be encypted,
but it is not,,
did i get it wrong?

then how to rename the uploaded file?


$config['encrypt_name'] not working - El Forum - 02-06-2009

[eluser]akkumaru[/eluser]
,,anyone?


$config['encrypt_name'] not working - El Forum - 04-08-2009

[eluser]Unknown[/eluser]
Not sure if you are still having problems with this but I came across the same problem.
I thought it wasn't working but when I checked the Upload library I realized that if you set "overwrite" = TRUE "encrypt_name" won't work. That solved my problem.

Cheers.


$config['encrypt_name'] not working - El Forum - 06-24-2010

[eluser]Josepzin[/eluser]
Thanks!

That works:
Code:
$config['overwrite']        = FALSE;
$config['encrypt_name']     = TRUE;