CodeIgniter Forums
Create folder in multilanguage - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: Create folder in multilanguage (/showthread.php?tid=30945)



Create folder in multilanguage - El Forum - 06-01-2010

[eluser]ravi_kachh[/eluser]
Hello all,

Actually am facing a new problem with php codeigniter.
I am working on a project in two language 1)English and 2)Greek.
I have requirement to create a folder whose name will be provided by user, for which i am using $this->ci->ftp->mkdir($dirPath , 0777);

This works fine with English but when I am trying to create a folder with greek name it is creating folder properly but the name of a folder is transfered to some wired character like:
Ενεργοποίησης
This should be "Ενεργοποίησης".

Can anyone help me to resolve this issue???

Thanks,
Ravi


Create folder in multilanguage - El Forum - 06-01-2010

[eluser]WanWizard[/eluser]
It is transformed where? Is the directory created like that?
In that case, the connection to the FTP server is not using UTF8, or the underlying file system uses a diffferent encoding scheme.


Create folder in multilanguage - El Forum - 06-01-2010

[eluser]ravi_kachh[/eluser]
Hi,

Thanks for your mail,

Transfered means the languag is converting to some unreadable characters.
And what could be the solution of the above issue?

Ravi