When uploading files with non-ASCII characters I get UnicodeEncodeError:

Exception Type: UnicodeEncodeError at /admin/studio/newsitem/add/
Exception Value: 'ascii' codec can't encode character u'\xf8' in position 78: ordinal not in range(128)

See full stack trace.

I run Django 1.2 with MySQL and nginx and FastCGI.

This is a problem that is fixed according to the Django Trac database, but I still have the problem. Any suggestions on how to fix are welcome.

EDIT: This is my image field:

image = models.ImageField(_('image'), upload_to='uploads/images', max_length=100)
link|improve this question

80% accept rate
Can you give the model/field definition as well? In particular I'm interested in seeing the upload_to definition. – Mark Lavin Sep 15 '10 at 14:21
Updated with upload_to definition. – vorpyg Sep 16 '10 at 12:13
For anyone still landing here check the Django ticket's last comment by akaihola, he says: "Debian runs Apache with the LANG=C locale by default, which breaks uploading files with special characters in their names at least when running with mod_wsgi. Activating a UTF-8 locale in /etc/apache2/envvars should resolve the issue" The ticket: code.djangoproject.com/ticket/6009 – Tuukka Mustonen Jun 21 '11 at 13:34
This applies for nginx as well. Check my answer here: stackoverflow.com/a/7602446/108763 – vorpyg Dec 30 '11 at 16:16
feedback

5 Answers

In situations where you must display a unicode string in a place that only accepts ascii (like the console or as a path) you must tell Python that you want it to replace the non ascii characters best effort.

>> problem_str = u'This is not all ascii\xf8 man'
>> safe_str = problem_str.encode('ascii', 'ignore')
>> safe_str
'This is not all ascii man'

Encoding issues are prevented in the admin by the cautious handing of Django templating, but if you have ever added custom columns and forgotten to convert the values to ascii, or you override the str method for a model and forget to do this, you will get the same error, preventing template rendering.

If this string were saved into your (hopefully utf8) database there would be no problem, it looks like you are trying to upload a file that uses the title of an entity that has a non ascii character.

link|improve this answer
feedback

Hope this would help. In my case, I'm running django through daemontools.

Setting

export LANG='en_US.UTF-8'
export LC_ALL='en_US.UTF-8'

in run script before executing manage.py resolved the issue with uploads filename

link|improve this answer
feedback

It's hard to say without seeing a little more code but it looks to be related to this question: http://stackoverflow.com/questions/2457087/.

Looking through the Django ticket mentioned it would seem you should follow something similar to the deployment docs on "If you get a UnicodeEncodeError":
http://docs.djangoproject.com/en/dev/howto/deployment/modpython/#if-you-get-a-unicodeencodeerror

(I know this is for Apache/mod_python but my guess would be it's the same root issue of file system encoding not being UTF-8 and there is a similar fix when using nginx)

EDIT: From what I can tell this nginx module would be the equivalent fix: http://wiki.nginx.org/NginxHttpCharsetModule

link|improve this answer
I suspect it could have something to do with this. I tried adding an u in front of the string, as described here: stackoverflow.com/questions/2457087/… without luck. Have you got a link to the nginx fix? – vorpyg Sep 16 '10 at 12:18
1  
See my latest edit for the link. – Mark Lavin Sep 16 '10 at 13:46
Thanks, still not working, though. I've tried setting the locale, as indicated in the Django docs, and also tried adding charset utf8 to my nginx config. Maybe I'll just have to rewrite the save method to rename the file first… – vorpyg Sep 16 '10 at 19:32
feedback
up vote 1 down vote accepted

After investigating this some more I found out that I hadn't set the charset in my main Nginx config file:

http {
  charset  utf-8;
}

By adding the above, the problem disappeared and I think that this is the correct way of handling this issue.

link|improve this answer
feedback

As said before, it is related to locale. For exemple, if you use gunicorn to serve your django application, you may have an init.d script (or, as me, a runit script), where you can set the locale.

To solve UnicodeEncodeError with file upload, put something like export LC_ALL=en_US.UTF8 in your script that run your app.

For example, this is mine (using gunicorn and runit):

#!/bin/bash
export LC_ALL=en_US.UTF8
cd /path/to/app/projectname
exec gunicorn_django -b localhost:8000 --workers=2

Also, you can check your locale in your template, using this in your view:

import locale
data_to_tpl = {'loc': locale.getlocale(), 'lod_def': locale.getdefaultlocale()}

And just disply {{loc}} - {{loc_def}} in your template.

You will have more information about your locale settings! That was very usefull for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.