Tagged Questions
8
votes
1answer
304 views
Django (audio) File Validation
I'm experimenting with a site that will allow users to upload audio files. I've read every doc that I can get my hands on but can't find much about validating files.
Total newb here (never done any ...
7
votes
1answer
2k views
Reading file data during form's clean method
So, I'm working on implementing the answer to my previous question.
Here's my model:
class Talk(models.Model):
title = models.CharField(max_length=200)
mp3 = ...
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 ...
4
votes
2answers
281 views
Processing file uploads before object is saved
I've got a model like this:
class Talk(BaseModel):
title = models.CharField(max_length=200)
mp3 = models.FileField(upload_to = u'talks/', max_length=200)
seconds = ...
4
votes
2answers
2k views
django filefield return filename only in template
I've got a field in my model of type FileField. This gives me an object of type type File, which has the following method:
File.name: The name of the file including the relative path from ...
3
votes
2answers
155 views
Why won't my file save to instance (it saves to disk…)?
I can get my file to save to disk where I tell it to, but can't get it to save to the instance and I haven't the slightest idea why!
models.py
class Song(models.Model):
name = ...
3
votes
1answer
446 views
How to deal with temporary storage of uploaded files
In my django application I have a multi step registration, with few conditional parameters. Because of this I figured out to store data from forms in session. Unfortunatelly sessions serialize data ...
3
votes
1answer
786 views
Programmatically Upload Files in Django
I have checked several other threads but I am still having a problem. I have a model that includes a FileField and I am generating semi-random instances for various purposes. However, I am having a ...
2
votes
2answers
91 views
How does one use magic to verify file type in a Django form clean method?
I have written an email form class in Django with a FileField. I want to check the uploaded file for its type via checking its mimetype. Subsequently, I want to limit file types to pdfs, word, and ...
2
votes
2answers
701 views
update forms.FileField on django forms
I have a model with a FileField in it:
class DocumentUpload(models.Model):
document_name = models.CharField(max_length=100, blank=True)
document_path = models.FileField(upload_to='uploads')
...
2
votes
1answer
438 views
Displaying the contents (rather than saving) of an uploaded file with Django
How can I have a form with a FileField, where the uploaded file will not be saved but instead its text contents will be extracted and displayed?
2
votes
1answer
904 views
FileField Size and Name in Template
How do I get the size and name of a FileField in a template?
My model is setup like this:
class PDFUpload(models.Model):
user = models.ForeignKey(User, editable=False)
desc = ...
2
votes
1answer
435 views
When editing an object in django the ImageField is not populated
I'm trying to edit an existing object through a form. Every thing is working fine except for the ImageField not being populated with the current value.
Here's the model:
class Post(models.Model):
...
1
vote
2answers
86 views
Django CMS, Filer, and Cumulus for Cloud Files
I have django-cms set up with the cms plugin filer on a Rackspace cloud server. I have been reading and searching around and found cumulus. Is there a way to make all three work together in a way that ...
1
vote
1answer
80 views
Django FileField.save() makes duplicate files
I have user submitted content that I am trying to write to a file and then save to a FileField.
so I have a model that looks like this:
class Revision(models.Model):
def ...
1
vote
2answers
236 views
Django ImageField/FileField save uploaded file using model's pk
I'm converting a legacy site (originally written in rails) and by default the images were saved using the format {{pk}}.{{extension}} and that file was always overwritten if a new file is uploaded.
...
1
vote
2answers
161 views
In Django, how does one limit file types on file uploads for ModelForms with FileFields?
My goal is to limit a FileField on a Django ModelForm to PDFs and Word Documents. The answers I have googled all deal with creating a separate file handler, but I am not sure how to do so in the ...
1
vote
1answer
52 views
How does one alter a FileField of an object in Django?
I have a model called ClassFile that takes a FileField (document):
class ClassFile(models.Model):
timestamp = models.DateTimeField(auto_now_add=True, editable=False)
document = ...
1
vote
1answer
203 views
django: registering unzipped files on the local disk
[I apologize in advance for the length of this question.]
I'm using Django 1.2.3-3+squeeze1 on Debian squeeze.
I am writing an application which uploads zip files to disk in a
temporary location, ...
1
vote
1answer
63 views
Is this the way to make sure a FileField associated to a model will be deleted?
When I delete a model's instance that has a FileField, the actual file is left in my MEDIA_ROOT folder. To counter this, I'm listening for the post_delete signal, and doing this:
def ...
1
vote
2answers
979 views
django ImageField - how to customise name + remove old file
I have a model with an ImageField in it. I've already set the upload_to and created my own FileSystemStorage class to deal with saving the file with a unique name... however...
This setup allows me ...
1
vote
1answer
120 views
Django Fileupload With Email
I am trying to attach a file with a contact form. My code looks like this for the form and view:
if request.method == 'POST':
form = UploadCVForm(request.POST, request.FILES)
if ...
1
vote
1answer
234 views
How to check if a FileField has been modified in the Admin of Django?
I am trying to do a model with a file that shouldn't be modified. But the comment of the file can be.
Here is what I did, but we cannot modify the comment.
How can I test if a new file (using the ...
1
vote
1answer
145 views
Anyone know an up-to-date (September 2009) example of file-uploading in Django?
UPDATE : thanks to posters below, it's clear that the official documentation is up-to-date. Best to read that carefully rather than skim a bunch of other pages that turn up in Google.
I keep ...
0
votes
0answers
18 views
Django File Uploads on Hostmonstor
I am hosting a Django site on hostmonstor and I have not been successful in getting file uploads to work.
I am trying to upload to the public_html/uploads folder and have set the permission on the ...
0
votes
2answers
42 views
How does one obtain the type of an uploaded file in Django forms?
I have tried:
self.data['uploaded_file'].content_type
However, this gives an error that says the object lacks a content_type attribute.
Any ideas as to why? Thank you.
What is the best way to ...
0
votes
2answers
197 views
django 'thumbnail' is not a valid tag library:
I have tried django-filer to select mulitple files in a single filefield just i tried for my simple model and i ma facing this template error. i have just used a simple model in django admin.
could ...
0
votes
2answers
74 views
How to upload an image and store its link in database
I read some documents in Django site such as: Basic file uploads and FileField.storage. However, I still don't understand how to upload a file (or an image) to server and store its link in database. ...
0
votes
0answers
120 views
Django 1.1.2 file upload with Apache and WSGI
I have a centos5 server running apache and mod_wsgi.
I have updated my django settings file to allow for bigger uploads.
FILE_UPLOAD_MAX_MEMORY_SIZE = 429916160
the maximum i have set it too is ...
0
votes
1answer
129 views
How can I get the temporary name of an UploadedFile in Django?
I'm doing some file validation and want to load an UploadedFile into an external library while it is in the '/tmp' directory before I save it somewhere that it can be executed. Django does the ...
0
votes
1answer
69 views
In Django, how can one access file fields in forms.py?
I have this form class in forms.py in my Django application:
class EmailForm(EmailFormWithoutAttachment):
attachment = forms.FileField()
I would like to access the file uploaded in forms.py for ...
0
votes
1answer
249 views
Copying files from a saved FileField to an UploadedFile in Django
I need to save files, not from request.FILES, but from another saved record.
Here's the code for the model record:
class Foo(models.Model)
slug = models.SlugField()
class FooFile(models.Model):
...
0
votes
1answer
75 views
How can I track place where file has been uploaded to the server?
Tell me please, can I determine when loading files from a directory it was loaded?
InMemoryUploadedFile contains only the file name. Ie simply 'Foto.jpg'.
I would like to see there for example: ...
0
votes
1answer
139 views
Django view for storing files from request
I'm building a django application that will be operated via desktop application. Key feature for now is sending/storing files. Basically I need a django view with URL on which I can send files with ...
0
votes
1answer
843 views
Locating file path from a <InMemoryUploadedFile> Django object
I have a Django app which, submitting a package, should return values that are inside it..
Submitted the form to a view called "insert":
request.FILES['file']
returns the file objects, but it is of ...
0
votes
1answer
249 views
Django email attachment filetype limit
How can I limit the type of files of the email attachments sent by my contact form to Doc, Docx, PDF?
0
votes
1answer
695 views
Django File Upload: How do I handle the file?
I have read the documentation several times, but I am still confused. When you specify a model in Django, you can specify the file's destination. However, in the documentation, they go on a great deal ...