Archiver has problems with umlauts in filenames

Upload core product.
Post Reply
Chris78
Posts: 22
Joined: Fri Aug 15, 2008 9:51 am

Archiver has problems with umlauts in filenames

Post 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

User avatar
support
Posts: 1503
Joined: Sun Jan 27, 2008 6:19 pm

Re: Archiver has problems with umlauts in filenames

Post 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 ?

Chris78
Posts: 22
Joined: Fri Aug 15, 2008 9:51 am

Re: Archiver has problems with umlauts in filenames

Post by Chris78 »

Ok, this could help.

Thanks!

Post Reply