The django-uploads tag has no wiki summary.
6
votes
2answers
1k views
How do you convert a PIL `Image` to a Django `File`?
I'm trying to take an UploadedFile, convert it to a PIL Image object to thumbnail it, and the convert the PIL Image object that my thumbnailer returns back into a File object. How the heck can I do ...
5
votes
4answers
3k views
UnicodeEncodeError: 'ascii' codec can't encode character
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 ...
3
votes
1answer
991 views
Django uploading file not in MEDIA_ROOT path is giving me SuspiciousOperation error
I want to upload files to a path that is still in my django project, but in my MEDIA_ROOT path.
When I try to do this I get a SuspiciousOperation error.
Here are the paths as defined in my ...
2
votes
1answer
68 views
How to refuse an upload before it completes in Django?
I would like my Django application to decide whether to accept or reject an upload based on request headers and/or session data. If the upload is to be rejected, I would like the app to reset the ...
2
votes
1answer
2k views
django / file uploads permissions
I wrote a django app, but i have a little problem with the file permissions of the uploads files from a web form.
Basically I can upload a .mp3 file but it always keep chmod 600.
The container ...
0
votes
0answers
14 views
Django upload Form error: 'InMemoryUploadedFile' object has no attribute 'COOKIES'
Hi I'm new to Django I'm trying to build a simple upload application.
forms.py
from django import forms
class Song(forms.Form):
song = forms.ImageField()
models.py
from django.db import models
...
0
votes
1answer
76 views
Upload files in Django using Uploadify getting HTTP response code 403
I am trying to upload files in Django using Uploadify following this tutorial. I have carried out all the steps properly. In addition to that I have made a model where I store information regarding ...
0
votes
1answer
47 views
Django Forms uploading image - form data works except for image
I'm trying to get uploading working with Django. I don't get an error when I try to upload it, and the new Item is saved, but there is no image. The other form data is all there. I've been googling ...
0
votes
1answer
120 views
Django Upload Images
I have been trying to work with the uploading features of Django but I just can't seem to get it to work. My form already contains enctype="multipart/form-data" so that can't be the issue. Anyways ...
0
votes
2answers
223 views
Simple Django Image Upload - Image file not saving
Right I'm learning how to do a simple image upload form to upload an image to MEDIA_ROOT. The form renders fine, I get no errors, but the file is not showing up in the MEDIA_ROOT directory. If ...
0
votes
0answers
39 views
Django form enctype append in view
Is there any way to append enctype=multipart/form-data to form in view? Reason is that i massive import documents from xml file, which contains link to image. In view I have such code
post_data = ...
0
votes
1answer
96 views
Uploading images from Django view
Models:
from django.db import models
class Image(models.Model):
advertisement = models.ForeignKey('Advertisement')
image = ImageWithThumbsField(upload_to=store_path, blank=True)
class ...
0
votes
2answers
255 views
Django - HTTP Uploading of Multiple Images
I looked at this question:
Uploading multiple files with Django
but it did not seem to help as I have issues regarding it:
I don't want to deal with flash sessions using SWF Upload and Uploadify ...
0
votes
1answer
112 views
Images are not being stored?? - Django
These are my following settings:
MEDIA_ROOT = '/home/webapps/test_project/media/'
MEDIA_URL = 'http://192.168.0.2:8090/site_media/'
ADMIN_MEDIA_PREFIX = '/media/'
These are my model fields:
large ...
0
votes
0answers
274 views
Django admin interface upload failing on request data read error
This is an updated version of an old question I asked. I've now done a lot more testing, plus the old question got hijacked.
I'm getting a request data read error when trying to upload files to the ...