Re: Filename containing French characters ?

2011-05-24 Thread Frank Bonnet
OK now the filenames are well displayed in the console \BUT ... It still does not work with apache ( 404 file not found ! ) here is the log of apache when trying to access a filename that contains those bloody characters 82.238.8.126 - - [24/May/2011:06:56:01 +0200] GET

Re: Filename containing French characters ?

2011-05-24 Thread Robert Bonomi
From owner-freebsd-questi...@freebsd.org Tue May 24 02:32:36 2011 Date: Tue, 24 May 2011 09:32:20 +0200 From: Frank Bonnet f.bon...@esiee.fr To: freebsd-questions@freebsd.org Subject: Re: Filename containing French characters ? OK now the filenames are well displayed in the console

Re: Filename containing French characters ?

2011-05-24 Thread Frank Bonnet
On 05/24/2011 10:01 AM, Robert Bonomi wrote: From owner-freebsd-questi...@freebsd.org Tue May 24 02:32:36 2011 Date: Tue, 24 May 2011 09:32:20 +0200 From: Frank Bonnetf.bon...@esiee.fr To: freebsd-questions@freebsd.org Subject: Re: Filename containing French characters ? OK now the filenames

Re: Filename containing French Characters

2011-05-24 Thread Robert Bonomi
Date: Tue, 24 May 2011 10:28:02 +0200 From: Frank Bonnet f.bon...@esiee.fr Subject: Re: Filename containing French characters ? On 05/24/2011 10:01 AM, Robert Bonomi wrote: From owner-freebsd-questi...@freebsd.org Tue May 24 02:32:36 2011 Date: Tue, 24 May 2011 09:32:20 +0200 From

Re: Filename containing French characters ?

2011-05-24 Thread C. P. Ghost
On Mon, May 23, 2011 at 5:50 PM, Modulok modu...@gmail.com wrote: Short answer, use a glob pattern. Assume I have a file named 'à fichier.txt': (...) Very good hints indeed. I once had a directory full of files with strange characters, so I wrote a little program that replaced every non-ascii

Re: Filename containing French characters ?

2011-05-24 Thread Frank Bonnet
finally one of our developer has written a php function that transcode all accentuated characters to the corresponding non accentuated thanks to her !!! but the problem is NOT solved just workarrounded Le 24/05/2011 19:53, C. P. Ghost a écrit : On Mon, May 23, 2011 at 5:50 PM,

Re: Filename containing French characters ?

2011-05-24 Thread Chuck Swiger
On May 24, 2011, at 11:32 AM, Frank Bonnet wrote: finally one of our developer has written a php function that transcode all accentuated characters to the corresponding non accentuated thanks to her !!! but the problem is NOT solved just workarrounded Sure. FreeBSD's default filesystem

Re: Filename containing French characters ?

2011-05-23 Thread Robert Bonomi
From owner-freebsd-questi...@freebsd.org Sun May 22 10:02:02 2011 From: Frank Bonnet f.bon...@esiee.fr Date: Sun, 22 May 2011 17:00:48 +0200 To: freebsd-questions@freebsd.org Subject: Filename containing French characters ? Hello I'm going mad trying to Open a file which the filename

Re: Filename containing French characters ?

2011-05-23 Thread Robert Bonomi
From owner-freebsd-questi...@freebsd.org Sun May 22 23:56:05 2011 Date: Mon, 23 May 2011 06:54:44 +0200 From: Frank Bonnet f.bon...@esiee.fr To: freebsd-questions@freebsd.org Subject: Re: Filename containing French characters ? Le 22/05/2011 17:31, Mike Jeays a ecrit : On Sun, 22 May

Re: Filename containing French characters ?

2011-05-23 Thread Robert Bonomi
Date: Mon, 23 May 2011 06:54:44 +0200 From: Frank Bonnet f.bon...@esiee.fr To: freebsd-questions@freebsd.org Subject: Re: Filename containing French characters ? Le 22/05/2011 17:31, Mike Jeays a ecrit : On Sun, 22 May 2011 17:00:48 +0200 Frank Bonnetf.bon...@esiee.fr wrote: Hello

Re: Filename containing French characters ?

2011-05-23 Thread Matthieu Riviere
Hi, What is the underlying filesystem ? NTFS, in particular, seems to have specific mount options to handle UTF-8 (and maybe other encodings) stuff. Not sure if they apply to your case, but it's worth trying. Matthieu ___

Re: Filename containing French characters ?

2011-05-23 Thread Frank Bonnet
On 05/23/2011 03:08 PM, Robert Bonomi wrote: Date: Mon, 23 May 2011 06:54:44 +0200 From: Frank Bonnetf.bon...@esiee.fr To: freebsd-questions@freebsd.org Subject: Re: Filename containing French characters ? Le 22/05/2011 17:31, Mike Jeays a ecrit : On Sun, 22 May 2011 17:00:48 +0200 Frank

Re: Filename containing French characters ?

2011-05-23 Thread Frank Bonnet
On 05/23/2011 03:46 PM, Matthieu Riviere wrote: Hi, What is the underlying filesystem ? NTFS, in particular, seems to have specific mount options to handle UTF-8 (and maybe other encodings) stuff. Not sure if they apply to your case, but it's worth trying. Matthieu the volume is NFS

Re: Filename containing French characters ?

2011-05-23 Thread Polytropon
On Mon, 23 May 2011 06:54:44 +0200, Frank Bonnet f.bon...@esiee.fr wrote: when I type the ls -l command the file is displayed with a ? in place of the French (accentuated ) character That's typical for console operations (text mode) when UTF-coded characters are encountered. The text mode

Re: Filename containing French characters ?

2011-05-23 Thread Modulok
Short answer, use a glob pattern. Assume I have a file named 'à fichier.txt': ls -l -rw-r--r-- 1 Modulok Modulok 12 May 23 09:01 ?? fichier.txt mv ?\ fichier.txt aFile.txt Long answer, for those who want to follow along and fix their terminal to display UTF-8, keep

Re: Filename containing French characters ?

2011-05-23 Thread Frank Bonnet
Thanks that is working :-) Now I have to test the application ( apache based application ) to see if it is able to open the file. I'll tell in few hours when arrived to my office Le 23/05/2011 17:50, Modulok a écrit : Short answer, use a glob pattern. Assume I have a file named 'à

Filename containing French characters ?

2011-05-22 Thread Frank Bonnet
Hello I'm going mad trying to Open a file which the filename contains one or more French characters ( file not found ) Is there some magical receipe to do so ? Or do I have to forget trying ??? Thanks Envoyé de mon iPhone___

Re: Filename containing French characters ?

2011-05-22 Thread Eitan Adler
I'm going mad trying to Open a file which the filename contains one or more French characters ( file not found ) Is there some magical receipe to do so ? Or do I have to forget trying ??? Open a file using what program? Do you have permission to read/write to the file? What is the file

Re: Filename containing French characters ?

2011-05-22 Thread Mike Jeays
On Sun, 22 May 2011 17:00:48 +0200 Frank Bonnet f.bon...@esiee.fr wrote: Hello I'm going mad trying to Open a file which the filename contains one or more French characters ( file not found ) Is there some magical receipe to do so ? Or do I have to forget trying ??? Thanks Envoyé de

Re: Filename containing French characters ?

2011-05-22 Thread Frank Bonnet
Le 22/05/2011 17:31, Mike Jeays a écrit : On Sun, 22 May 2011 17:00:48 +0200 Frank Bonnetf.bon...@esiee.fr wrote: Hello I'm going mad trying to Open a file which the filename contains one or more French characters ( file not found ) Is there some magical receipe to do so ? Or do I have to