Hi,
Bit of a strange problem, but if a file name has a character outside of English alphabet eg. é, then Minidlna refuses to index it and Greyhole fails to move it from the Landing Zone, until I rename the file without the é.
Is there some sort of character encoding etc that I need to change?
Thanks,
Update: Solved the problem. Make sure the locale in /usr/bin/greyhole is the same as the locale when typing
in the terminal.
Eg.
/usr/bin/greyhole:
Code
//setlocale(LC_COLLATE, "en_US.UTF-8");
//setlocale(LC_CTYPE, "en_US.UTF-8");
setlocale(LC_COLLATE, "en_GB.UTF-8");
setlocale(LC_CTYPE, "en_GB.UTF-8");
locale:
Code
LANG=en_GB.UTF-8
LANGUAGE=en_GB:en
LC_CTYPE="en_GB.UTF-8"
LC_NUMERIC="en_GB.UTF-8"
LC_TIME="en_GB.UTF-8"
LC_COLLATE="en_GB.UTF-8"
LC_MONETARY="en_GB.UTF-8"
LC_MESSAGES="en_GB.UTF-8"
LC_PAPER="en_GB.UTF-8"
LC_NAME="en_GB.UTF-8"
LC_ADDRESS="en_GB.UTF-8"
LC_TELEPHONE="en_GB.UTF-8"
LC_MEASUREMENT="en_GB.UTF-8"
LC_IDENTIFICATION="en_GB.UTF-8"
LC_ALL=
Display More