Django-file-upload refers to how django handles file uploads

learn more… | top users | synonyms

0
votes
0answers
24 views

Django file or URL field

I want to do something very simple but searches on SO or Google are not throwing up anything relevant. I have a FileField defined that current uses Django Storages backend for S3. That all works fine ...
1
vote
2answers
130 views

Django uploads: Discard uploaded duplicates, use existing file (md5 based check)

I have a model with a FileField, which holds user uploaded files. Since I want to save space, I would like to avoid duplicates. What I'd like to achieve: Calculate the uploaded files md5 checksum ...
1
vote
1answer
37 views

Django: put request.FILES in request.SESSION

I'm trying to put the request.session fields in my request.session for use it later. But when I simply write: request.session['fileInfo'] = request.FILES I always get this error: Pickilng error: ...
0
votes
1answer
40 views

Django FileSystemStorage get_available_name return name and count

I hope someone could point me into the right direction. The default Django FileSystemStorage function get_available_name returns just the name which is then stored in the db for the corresponding ...
0
votes
1answer
88 views

Saving image/file through django shell

i am getting problem in saving image file through django shell. my model.py is: class user(models.Model): name=models.CharField(max_length=20) pic=models.ImageField() and bla bla every ...
0
votes
1answer
67 views

Django - How to update a field inside a model save() method?

It is possible to update a model field inside the save() method? models.py: class BicycleAdItemKind(MPTTModel): image_file_temp_fullpath = "" image_file_temp_filename = "" def ...
0
votes
1answer
164 views

Python/Django :How to open file in xlrd using file object.

Background: I have uploaded a xls file using the FileField. Now I want to parse this file using the xlrd tool. While doing so I am doing the following in the view. if form.is_valid(): ...
0
votes
0answers
142 views

Initialize Django Form FileField

I have a Django form class like; class FileDefinitionForm(ModelForm): fileContent = forms.FileField(required=False) def __init__(self, *args, **kwargs): super(FileDefinitionForm, ...
1
vote
2answers
384 views

Django file upload via API

I'm new to django and been designing some basic models that contain FileFields. Here is an example of my model: class Sample(models.Model): pub_date = models.DateTimeField('Publish Date', ...
0
votes
2answers
307 views

Upload Image with Django Model Form

I'm having difficulty uploading the following model with model form. I can upload fine in the admin but that's not all that useful for a project that limits admin access. #Models.py class ...
4
votes
2answers
544 views

Django CMS - not able to upload images through cmsplugin_filer_image

i have a problem with a local installation on django cms 2.3.3: i've installed it trough pip, in a separated virtualenv. next i followed the tutorial for settings.py configuration, i started the ...
1
vote
1answer
105 views

Django upload file per user relationship error

I'm making an app, which requires users to upload some files. I want to store all files in a username folder (and possibly, later move it outside the project folder, but that's other thing) First I'm ...
0
votes
1answer
119 views

django model filefield having db error

I am using django 1.4 and using django model's filefield to upload some document via modelform. I am having following issues: When I submit form it says: Data truncated for column 'file_name' at ...
1
vote
1answer
103 views

Easiest way to display uploaded (image)file?

I'm trying to my first attempt at django file-uploading, and all i need at the moment is a way to display an uploaded image (png/jpg) to the user that uploaded. No need to save it anywhere. My ...
1
vote
2answers
132 views

Django: How to upload directly files submitted by a user to another server?

I'm using Django 1.4. There are two servers (app server and file server). The app server provide a web service using django, wsgi, and apache. User can upload files via the web service. I'd like to ...
0
votes
2answers
88 views

django python cumulus - How to deal with uploading a large number of files to cloud file storage

I have a number of files processed and saved in temp folder on my server and I now want to move them into my default_storage location, (default_storage is set to rackspace cloud files using ...
3
votes
3answers
293 views

How to extract File Object from Django Form FileField

I have created a ModelForm with fields, title, file and content. Here file is a FileField(). But I can't call the save() method of this form due to some reasons. So I have to maually created one Model ...
0
votes
2answers
81 views

Overwrite over a file and delete old model's object if the file exists

I have made something to overwrite a file already uploaded with : class OverwriteStorage(FileSystemStorage): def get_available_name(self, name): if self.exists(name): ...
0
votes
0answers
332 views

django-storages s3boto backend uploaded file links are broken

I am using django-storages' s3boto backend as my default storage backend. If I upload to my publicly accessible bucket via AWS console, I have no problem accessing it. If I use my Django form to ...
0
votes
1answer
223 views

Use FTP rather than HTTP for file transfer in Django

Is there any way to transfer huge files in Django using FileField..because eveytime i do using simple upload handler the Connection Timeout error occurs because of huge traffic generated. I was ...
0
votes
2answers
93 views

django upload file to custom location

Is it possible to upload a file in django using django's model.FileField() to a location that's not relative to /media ?. In my case upload an .html file to myproject/templates.
0
votes
2answers
196 views

Obtaining file type in django template

I need to get the file type of the uploaded file in django template. I have written a templatetag for getting file name but I need file type also. I might be able to get the content-type of the file ...
1
vote
0answers
176 views

Large File PUT requests on Heroku using Django

I'm creating an API for a Django application and one of the PUT requests allows for a (very) large file upload. I'm trying to host the application on Heroku, but I'm running into some issues with the ...
0
votes
2answers
79 views

Django: Making filefield only available to logged in users

How can I make the FileField only available to download for logged in users ?
1
vote
1answer
221 views

ImageField doesn't upload

I have been trying to implement a image upload for changing avatar for individual users. The problem I have right now is that it never uploads to the folder. It works from the admin but it doesn't ...
1
vote
2answers
140 views

What is the correct way to simulate filedata for testing a form?

I'm trying to test a self written FormField AudioFileFormField, which checks if a file is an audiofile before storing it. For that i have overwritten the to_python method. Trying to test this ...
0
votes
0answers
340 views

Django - using jquery file upload plugin in ajax

I'm using sigurdga / django-jquery-file-upload plugin to upload pictures. I'm not sure about the syntax it's using in templatetags/upload_tags.py file. sample: @register.simple_tag def upload_js(): ...
1
vote
1answer
118 views

Trouble uploading lots of file in Django

I'm having problems when uploading lots of files in Django. The context is the following: I've a spreadsheet with one or more columns being image filenames; those images are being uploaded through an ...
0
votes
1answer
718 views

RuntimeError: maximum recursion depth exceeded : why?

I created a subclass of the Django File object to take care of remote file. I also wanted to make a lazy version by creating a RemoteFileLazy subclassing the Lazyobject class but it does not work as I ...
1
vote
2answers
333 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 ...
2
votes
1answer
550 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 ...
2
votes
2answers
318 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 ...
0
votes
2answers
132 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 ...
1
vote
2answers
2k 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
286 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. ...
1
vote
2answers
1k 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. ...
0
votes
0answers
272 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
872 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 ...
3
votes
2answers
328 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 = ...
1
vote
2answers
1k 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 ...
0
votes
1answer
138 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 ...
1
vote
1answer
87 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 = ...
2
votes
1answer
421 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, ...
2
votes
1answer
118 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 ...
13
votes
1answer
873 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 ...
1
vote
1answer
501 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): ...
1
vote
2answers
3k 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 ...
0
votes
1answer
99 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
337 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 ...
16
votes
2answers
4k 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 thumb-creating function returns back into a File object. How can I do ...

1 2