Page 1 of 1

Archiver has problems with umlauts in filenames

Posted: Thu Mar 12, 2009 12:13 pm
by Chris78
Hi there!

Using the client side zip functionality of JFileUpload, the packer seems to have problems with umlauts in the filenames.
For example, the file "änderung.txt" will be packt into a "änderung.txt.archive.zip", which contains a file called "+ñnderung.txt".

Is it possible to add utf-8 encoding support to the packer?

Regards,
Chris

Re: Archiver has problems with umlauts in filenames

Posted: Thu Mar 12, 2009 6:46 pm
by support
No, it's a known problem reported at the end of:
http://www.jfileupload.com/products/jfi ... ssion.html

A solution is to replace non-ASCII characters by underscore with:
<PARAM NAME="preprocessingfilterparam5" VALUE="entrytemplate">
<PARAM NAME="preprocessingfiltervalue5" VALUE=":regex=[^a-zA-Z0-9_/\\\\\\-\\.]:_:">

As detailed in the tutorial. Could it help ?

Re: Archiver has problems with umlauts in filenames

Posted: Fri Mar 13, 2009 9:02 am
by Chris78
Ok, this could help.

Thanks!