Index: docs/howto/deployment/modpython.txt
===================================================================
--- docs/howto/deployment/modpython.txt	(revision 10838)
+++ docs/howto/deployment/modpython.txt	(working copy)
@@ -378,3 +378,19 @@
 .. _Expat Causing Apache Crash: http://www.dscpl.com.au/articles/modpython-006.html
 .. _mod_python FAQ entry: http://modpython.org/FAQ/faqw.py?req=show&file=faq02.013.htp
 .. _Getting mod_python Working: http://www.dscpl.com.au/articles/modpython-001.html
+
+If you get a UnicodeEncodeError
+===============================
+
+If you're taking advantage of the internationalization features of Django 
+(see :ref:`topics-i18n`), you may come across a curious problem. 
+Namely, uploading of non-ascii filenames with the storage system 
+with the default Apache settings on most systems will trigger 
+a ``UnicodeEncodeError`` exceptions when calling functions like ``os.path()``. 
+To avoid these issues, ensure that the following lines are included in your 
+Apache ``envvars`` file (typically found in ``/etc/apache2/envvars``)::
+
+    export LANG='en_US.UTF-8'
+    export LC_ALL='en_US.UTF-8'
+
+Then restart Apache.
