Hi,
I've run into similar issues while saving files with non ascii file names.
In my case, it turns out that supervisor was removing the environment variables
leave Django left with a C locale (ie, ascii only filenames).
It worked once I added - for example - LANG="en_US.UTF-8",
LC_ALL="en_US.UT
Hi
I suspect there is a disconnect somewhere between the encoding used by the
browser and the encoding used by django to decode the file name.
François
On Oct 21, 2013, at 2:42 AM, Raaj Supramanian wrote:
> class FileUpload(models.Model):
> cstr = models.CharField(max_length=50)
> fi
*class FileUpload(models.Model):
cstr = models.CharField(max_length=50)
file_nm =
models.CharField(max_length=250,editable=False,verbose_name='Name')
file_type_cd = models.CharField(max_length=10,editable=False,
verbose_name='Type')
file_size_val = models.CharField(max_length=25,e
3 matches
Mail list logo